Home Forums Basel support forum Compact product page design – closed by default Reply To: Compact product page design – closed by default

#18607

Artem Temos
Keymaster

Hi,

Try to add the following snippet to the Custom JS section in your Theme Settings

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

Regards