Comments 1andywozhere started the conversationOctober 24, 2020 at 3:59pmIs it possible to remove the "Visit Website" button? 877Zhivko repliedOctober 24, 2020 at 9:07pmHi,If your events don't have external link set (in Dashboard -> STEC -> Events -> Add/Edit Event Page -> Introduction tab below the short description field) it should not show up. Stachethemes Developersimeler repliedOctober 26, 2020 at 12:56pmI have the same question. But it still shows, even without an external link. Is there a way to disable it? 877Zhivko repliedOctober 27, 2020 at 12:56pmTry adding following filter in your theme/child-theme functions.php file: add_filter('stec_event_get_front_data', function($data) { $data['link'] = ''; return $data;}); Stachethemes Developer2 Likessimeler repliedOctober 27, 2020 at 1:51pmThx, worked! Sign in to reply ...
Is it possible to remove the "Visit Website" button?
Hi,
If your events don't have external link set (in Dashboard -> STEC -> Events -> Add/Edit Event Page -> Introduction tab below the short description field) it should not show up.
Stachethemes Developer
I have the same question. But it still shows, even without an external link. Is there a way to disable it?
Try adding following filter in your theme/child-theme functions.php file:
Stachethemes Developer
Thx, worked!