Home Forums WoodMart support forum Product Page Tab on Mobile Reply To: Product Page Tab on Mobile

#231763

Hello,

Add the snippet to the Custom JS section (On document ready) in Theme Settings:

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

Best Regards