Comments 1romain started the conversationSeptember 11, 2019 at 3:05pmHelloI've set the "open_event_in=single" shortcode for my home page. Now events open in a single page. But how could I change the "_blank" link to "_self" link, because I don't want to open a new tab each time ?Thanks 877Zhivko repliedSeptember 13, 2019 at 11:02amHi,Open your theme functions.php file and following filter at the bottom: add_action('stec_after_html', function() { ?> <script type="text/javascript"> (function ($) { $.stecExtend(function (m) { m.eventsHandler.eventToggle = function (e) { window.open(e.data('permalink'), '_self'); return false; }; }); })(window.jQuery); </script> <?php}); Stachethemes Developer Sign in to reply ...
Hello
I've set the "open_event_in=single" shortcode for my home page.
Now events open in a single page. But how could I change the "_blank" link to "_self" link, because I don't want to open a new tab each time ?
Thanks
Hi,
Open your theme functions.php file and following filter at the bottom:
Stachethemes Developer