Comments 1Marcus started the conversationMay 19, 2022 at 9:48pmHi! I would like to hide all the end times. Is there any general way for this, e.g. through php or css. Thanks in advance! 877Zhivko repliedMay 23, 2022 at 7:59amYou could force it via a hook in your theme or child-theme functions.php file: add_filter('stec_event_get_front_data', function($data) { $data['hide_end'] = 1; return $data;}); Stachethemes Developer 1Marcus repliedMay 23, 2022 at 2:55pmThank you, it worked perfectly!1 Like Sign in to reply ...
Hi! I would like to hide all the end times. Is there any general way for this, e.g. through php or css.
Thanks in advance!
You could force it via a hook in your theme or child-theme functions.php file:
Stachethemes Developer
Thank you, it worked perfectly!