Announcement

Collapse
No announcement yet.

How to change meeting reminder menu entries EspoCRM v5.6.14

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

  • How to change meeting reminder menu entries EspoCRM v5.6.14

    Dear all,

    How can I change the given entries on the menu for meeting reminder both for box and email? We need operated values 60 and 90 days prior to the meeting.

    Regards

  • #2
    Hi,

    Only manually,

    https://github.com/espocrm/espocrm/b...inder.json#L20

    You need to override this in the custom dir.

    Create a file custom/Espo/Custom/Resources/metadata/entityDefs/Reminder.json

    Code:
    {
        "fields": {
            "seconds": {
                "options": [0, 60, 120, 300, 600, 900, 1800, 3600, 7200, 10800, 18000, 86400, 172800, 259200, 432000]
            }
        }
    }
    Clear cache.

    Comment


    • berssant
      berssant commented
      Editing a comment
      Thank you for the suggestion! How can I change the Reminder Options in Date & Time picker? As it would be helpfull to be reminded for a Meeting a couple of days before it begins. Thank you in advance!
Working...
X