Keep DESCRIPTION tab close on mobile phone
-
Hello Team,
Does anyone know how to have the description TAB on mobile phone been close as default?
Attachments:
You must be
logged in to view attached files.
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