Home › Forums › WoodMart support forum › Keep DESCRIPTION tab close on mobile phone › Reply To: Keep DESCRIPTION tab close on mobile phone
February 18, 2021 at 12:05 am
#267490
Elise Noromit
Member
Hello,
Add the snippet to the Custom JS, on Document ready section in Theme Settings:
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);
}
Add this code to the Document ready. I have tested on my site (I have tabs on desktop and accordion on mobile all the tabs are closed.
Best Regards