Home › Forums › WoodMart support forum › Product Page Tab on Mobile › Reply To: Product Page Tab on Mobile
October 8, 2020 at 10:48 am
#231763
Elise Noromit
Member
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