Hi there,
I need to change 2 things on your frequently asked questions page.
please check behaviour https://woodmart.xtemos.com/faqs/#1484652030151-41d816a1-ec06
I want to change the icons of the dropdown arrow to a plus and minus sign and change the click behaviour of the dropdown.
See example page.
https://www.sohome.nl/faq/bestellen-en-bezorgen
Here the icon is a “+” sign and when clicking it opens and stays opened and becomes a minus “-” sign.
It is something like this I believe, but it needs to change. Maybe you can provide me a better solution cause this didn’y work.
jQuery(‘.wc-tabs-wrapper .woodmart-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’);
});
Many thanks in advance.
Regards,
Ibrahim