Home Forums WoodMart support forum Tab Closed

Tab Closed

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

    MAYZEL
    Participant

    Hi,

    is it possible to have the description tab not open by default please?
    https://snag.gy/IJlTKi.jpg
    So when you go to a product the tabs stay closed until open manually?

    #73538

    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

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