Home › Forums › WoodMart support forum › Reviews tab not closing properly › Reply To: Reviews tab not closing properly
November 5, 2019 at 8:05 am
#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();
}
});
});