How to change meeting reminder menu entries EspoCRM v5.6.14

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jereromanoo
    Junior Member
    • Oct 2019
    • 1

    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
  • yuri
    Member
    • Mar 2014
    • 8440

    #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.
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    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...