Home › Forums › WoodMart support forum › How to collapse accordion-title › Reply To: How to collapse accordion-title
January 25, 2021 at 4:12 pm
#261289
Elise Noromit
Member
Hello,
Thank you very much for choosing our theme and for contacting us.
Please add this snippet to the Theme Settings > Custom JS:
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.
Best Regards