Comments 3metal38 started the conversationDecember 1, 2020 at 6:09pmHello,On the detail page of an event, is it possible to directly see the list of attachments? Not everyone knows that you have to click on the "+". (toggles open).Cordially. 877Zhivko repliedDecember 2, 2020 at 12:48pmHi,Try following:Open your active theme functions.php file and add following hook: add_action('wp_footer', function() { if (!wp_script_is('stec-helper-js')) { return; } ?> <script type="text/javascript"> (function ($) { $(function () { if (typeof $.stecExtend === 'undefined') { $('.stec-layout-single').find('.stec-layout-single-attachments-list, .stec-layout-single-attachments-toggle').addClass('active'); } else { $.stecExtend(function (m) { m.$instance.on('onEventToggleOpen', function (e, data) { data.$container .find('.stec-layout-event-inner-intro-attachments-toggle, .stec-layout-event-inner-intro-attachments-list') .addClass('active'); }); }); } }); })(window.jQuery); </script> <?php}); Stachethemes Developer 3metal38 repliedDecember 2, 2020 at 8:24pmHi Zhivko. Perfect. Thanks for your quick answer.Christophe1 Like Sign in to reply ...
Hello,
On the detail page of an event, is it possible to directly see the list of attachments? Not everyone knows that you have to click on the "+". (toggles open).
Cordially.
Hi,
Try following:
Open your active theme functions.php file and add following hook:
Stachethemes Developer
Hi Zhivko. Perfect. Thanks for your quick answer.
Christophe