Home Forums WoodMart support forum Keep DESCRIPTION tab close on mobile phone

Keep DESCRIPTION tab close on mobile phone

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

    joshpe
    Participant

    Hello Team,

    Does anyone know how to have the description TAB on mobile phone been close as default?

    Attachments:
    You must be logged in to view attached files.
    #267490

    Hello,

    Add the snippet to the Custom JS, on Document ready section in Theme Settings:

    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. I have tested on my site (I have tabs on desktop and accordion on mobile all the tabs are closed.

    Best Regards

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