Announcement

Collapse
No announcement yet.

How to show always the hour in Stream

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • 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:	118
Size:	29.3 KB
ID:	29744

  • #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


    • #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


      • #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


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

          Comment

          Working...
          X