How to collapse accordion-title
-
The desciription-tab is ‘acitve’
Is possible to close this tab?
Especially on mobile it looks not very good.
The other tabs are still closed!
Thank you very much and we appreciate your answer!
Attachments:
You must be
logged in to view attached files.
Hello,
Thank you very much for choosing our theme and for contacting us.
Please add this snippet to the Theme Settings > Custom JS:
if (jQuery(window).width() <= 768) {
setTimeout(function() {
var $tab = jQuery('.woodmart-tab-wrapper').find('a.active');
$tab.siblings('.wc-tab').hide();
$tab.removeClass('active');
}, 10);
}
Add this code to the Document ready.
Best Regards