Home New Guten Forums WoodMart support forum How to collapse accordion-title

How to collapse accordion-title

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #261224

    Sebastian_Ger_BF
    Participant

    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.
    #261289

    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

Viewing 2 posts - 1 through 2 (of 2 total)