Home Forums WoodMart support forum Collapse Product Details Tab Reply To: Collapse Product Details Tab

#134757

Artem Temos
Keymaster

Try to replace the code with the following one

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