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.

#318194

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