Hello,
Yes if I remove the Custom JS it works. But why is that relevant? If all tabs are closed and I click on the “customer reviews” link right under the title, it goes to the #reviews container and opens it.
I want the JS top leave all tabs closed by default when the user loads the page (because it takes up too much space which reduces the chances that he will see the related products section under that) but if he clicks the link it should do just like the reviews link.
Is it because of the code? see:
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);
Thanks