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.
September 11, 2021 at 12:05 pm
#317891
Aizaz Imtiaz Awan
Keymaster
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