Home Forums WoodMart support forum ‘Description’ tabs to be automatically closed, just like the other tabs. Reply To: ‘Description’ tabs to be automatically closed, just like the other tabs.

#317891

Hello,

Please remove the previous Code and try adding the following Code in the Document Ready Area under Theme Settings >> Custom JS.

setTimeout(function() {
    var $tabs = jQuery( '.wc-tabs, ul.tabs' ).first();
    $tabs.parent().find('#tab-description').hide();
    $tabs.parent().find( '.tab-title-description' ).removeClass('active');
}, 1000);

Best Regards