Home Forums WoodMart support forum How to– Reply To: How to–

#303845

Hello,

Please try adding the following JS on document ready in Theme Settings -> Custom JS

jQuery('.wc-tabs-wrapper .wd-accordion-title').click(function (e) {
	e.stopPropagation();
	e.preventDefault();
	var $this  = jQuery(this);
	var $panel = $this.siblings('.woocommerce-Tabs-panel');
	if ($this.hasClass('active')) {
			$this.removeClass('active');
			$panel.stop().slideUp(300);
	} else {
			$this.parents('.woocommerce-tabs').find('.wd-accordion-title').removeClass('active');
			$this.parents('.woocommerce-tabs').find('.woocommerce-Tabs-panel').slideUp();
			$this.addClass('active');
			$panel.stop().slideDown(300);
	}
	jQuery(window).resize();
	jQuery(document).trigger('wood-images-loaded');
});

Best Regards