Comments 2Robin started the conversationMay 19, 2023 at 5:41pmHi ZhivkoOne other thing: how can the date of the event be added to the user notification email template? {{attend_date}} does not work.Cheers,Robin 877Zhivko repliedMay 22, 2023 at 2:50pmPlace this filter in your functions.php add_filter('stec_mail_add_special_words', function ($filter, $text, $event) { $date_format = 'Y-m-d H:i'; // e.g. 2023-01-01 00:00 $filter['replace'][] = '{{event_date}}'; $filter['with'][] = $event->get_start_date($date_format); return $filter; }, 10, 3); and use {{event_date}} instead of {{attend_date}} Stachethemes Developer 2Robin repliedMay 24, 2023 at 6:42amPerfect, thanks!1 Like Sign in to reply ...
Hi Zhivko
One other thing: how can the date of the event be added to the user notification email template? {{attend_date}} does not work.
Cheers,
Robin
Place this filter in your functions.php
and use {{event_date}} instead of {{attend_date}}
Stachethemes Developer
Perfect, thanks!