greetings
previously we needed a way to keep accordion tabs open . and you guys thankfully helped us out by providing the below code. however, after the last update .. it stopped working as you can see in my website .
please help us out
thanks in advanced
jQuery('.wc-tabs-wrapper .wd-accordion-title').click(function (e) {
e.stopPropagation();
e.preventDefault();
var $this = jQuery(this),
$panel = $this.siblings('.woocommerce-Tabs-panel');
if ($this.hasClass('active')) {
$this.removeClass('active');
$panel.stop().slideUp(300);
} else {
$this.addClass('active');
$panel.stop().slideDown(300);
}
jQuery(window).resize();
jQuery(document).trigger('wood-images-loaded');
});