Home › Forums › WoodMart support forum › Want Single Product Page All Tabs Close. › Reply To: Want Single Product Page All Tabs Close.
February 5, 2022 at 9:07 pm
#350339
Elise Noromit
Member
Hello,
Please try this code, add it to the Theme Settings > Custom JS: On document ready.
if (jQuery(window).width() <= 768) {
setTimeout(function() {
var $tab = jQuery('.woodmart-tab-wrapper').find('a.active');
$tab.siblings('.wc-tab').hide();
$tab.removeClass('active');
}, 10);
}
Best Regards