How to show always the hour in Stream

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • altomarketing
    Junior Member
    • Jan 2017
    • 22

    How to show always the hour in Stream

    Hi ! if i write something in History, it shows the HOUR, but tomorrow will show only the day , How to show always the hour ?



    Click image for larger version

Name:	espocrm-hour.JPG
Views:	193
Size:	29.3 KB
ID:	29744
  • tanya
    Senior Member
    • Jun 2014
    • 4308

    #2
    Hello

    It is not implemented yet. You can develop it
    client/src/views/stream/note.js
    change
    Code:
    this.createField('createdAt', null, null, 'views/fields/datetime-short');
    to
    Code:
    this.createField('createdAt', null, null, 'views/fields/datetime');
    if you want to disable datetime readable formatting, add to data/config.php
    Code:
    'readableDateFormatDisabled' => true,

    Comment

    • altomarketing
      Junior Member
      • Jan 2017
      • 22

      #3
      It did now work.. I want to show always The day And hour, from today and all events.

      Changing from datetime-short to datetime , does not change anything in my stream

      Comment

      • tanya
        Senior Member
        • Jun 2014
        • 4308

        #4
        my screenshots according to the previous guide.
        with 'Today' I don't use set parameter in config. without 'Today' -> used readableDateFormatDisabled parameter in config

        Comment

        • altomarketing
          Junior Member
          • Jan 2017
          • 22

          #5
          It works, i just need to clean and rebuild cache in Administration. Thanks !!

          Comment

          Working...