Home Forums WoodMart support forum FAQ dropdown behaviour.

FAQ dropdown behaviour.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #242296

    IbrahimY
    Participant

    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

    #242334

    Hello,

    FAQ element is the default WP Bakery page builder element. Our support does not cover the customization of WP bakery page builder.

    Best Regards

    #242580

    IbrahimY
    Participant

    Hi I found out it was a simple setting in visual composer, if you knew you could have mentioned it. I fixed it thanks for replying.

    #242600

    You are welcome! If you have any questions please feel free to contact us.

    Best Regards

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘FAQ dropdown behaviour.’ is closed to new replies.