Home Forums WoodMart support forum Custom tab – accordeon Reply To: Custom tab – accordeon

#318266

Hello,

Please add this snippet to the Theme Settins > Custom JS on the document ready:

if (jQuery(window).width() <= 1920) {
	setTimeout(function() {
		var $tab = jQuery('.wd-tab-wrapper').find('a.active');
			$tab.siblings('.wc-tab').hide();
			$tab.removeClass('active');
	}, 10);
}

Best Regards