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 13, 2021 at 12:23 pm
#318194
Aizaz Imtiaz Awan
Keymaster
Hello,
Please try adding the following Custom CSS in the Global Custom CSS area under Theme Settings >> Custom CSS.
body:not(.ready) .wd-accordion-title.active {
color: var(--wd-link-color);
}
body:not(.ready) .woocommerce-Tabs-panel {
display: none !important;
}
Add the following Custom JS Code Alongside the previous code I provided.
jQuery(document).ready(function(){
jQuery('body').addClass('ready');
});
Then check back.
Best Regards