Okay
  Public Ticket #2562697
Disable Reminder Feature
Closed

Comments

  •  2
    Santiago started the conversation

    The agenda view in my website displays the 'Reminder' feature even though I disabled it in the General Settings ('Reminder feature'). Am I missing flipping a flag somewhere?

  •  783
    Zhivko replied

    Double-check if it's indeed turned off in the General settings.

    If you're using cache plugin try clearing the page cache.


    Stachethemes Developer

  •   Santiago replied privately
  •  783
    Zhivko replied

    The logic in the php file has been removed (from file front\inc.layout.event.php) so I had to insert it in the javascript in the child theme functions.php file:

    if (eventState > 0 || m.glob.options.general_settings.reminder === '0') {
         extraClass.push('stec-layout-event-no-reminder');
    }

    Should no longer display the reminder now.


    Stachethemes Developer

  •  2
    Santiago replied

    Thank you!