Home Forums WoodMart support forum Want Single Product Page All Tabs Close. Reply To: Want Single Product Page All Tabs Close.

#350339

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