Home Forums WoodMart support forum Accordian tabs on product page

Accordian tabs on product page

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #150758

    gilbery007
    Participant

    When looking at a product the description tab is already opened. Is there any way to have this closed until a user clicks to open it?

    #150784

    Hello,

    Add the snippet to the Custom JS section in Theme Settings:

    setTimeout(function() {
    	var $tab = jQuery('.woodmart-tab-wrapper').find('a.active');
    		$tab.siblings('.wc-tab').hide();
    	  $tab.removeClass('active');
    }, 10);

    Best Regards

    #150904

    gilbery007
    Participant

    Thank you for providing the javascript code snippet. We would ideally like this code to only run on mobile devices and for the tab to remain open on desktop. Is this possible?

    #150938

    Eric Watson
    Participant

    Hello,

    Try using this code instead of the previously given

    if (jQuery(window).width() < 1024) {
    	setTimeout(function() {
    		var $tab = jQuery('.woodmart-tab-wrapper').find('a.active');
    		console.log($tab);
    		$tab.siblings('.wc-tab').hide();
    		$tab.removeClass('active');
    	}, 10);
    }
    

    Kind Regards
    XTemos Studio

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