Home Forums WoodMart support forum Reviews tab not closing properly Reply To: Reviews tab not closing properly

#154803

Artem Temos
Keymaster

Try to add the following code snippet to the Custom JS on document ready area in Theme Settings to fix this issue.

jQuery('body').on( 'click', '.wc-tabs li a, ul.tabs li a', function( e ) {
	e.preventDefault();
	var $link = jQuery(this);
	jQuery('.woodmart-accordion-title').each(function(){
		if ( jQuery(this).attr('href') == $link.attr('href') ) {
			jQuery(this).click();
		}
	});
});