Home › Forums › WoodMart support forum › Custom tab – accordeon › Reply To: Custom tab – accordeon
September 13, 2021 at 5:59 pm
#318266
Elise Noromit
Member
Hello,
Please add this snippet to the Theme Settins > Custom JS on the document ready:
if (jQuery(window).width() <= 1920) {
setTimeout(function() {
var $tab = jQuery('.wd-tab-wrapper').find('a.active');
$tab.siblings('.wc-tab').hide();
$tab.removeClass('active');
}, 10);
}
Best Regards