Home Forums WoodMart support forum Accordion Tab signs

Accordion Tab signs

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

    mintudas
    Participant

    Hello Support,

    How can I change the [+] and [-] signs in the Accordion Tab single product page?

    Also, I wanted to the Tabs are always close.

    Thank in advanced for your help

    Regards,
    Mintu

    Attachments:
    You must be logged in to view attached files.
    #185917

    Hello,

    I saw the screenshot you attached.

    1) To change the signs in the accordion tabs you need to target the following class and set the content according to your needs.

    .woodmart-accordion-title::after {
    content: "\f124";
    font-family:"woodmart-font";
    }

    You can set the content and font-family according to your needs.

    2) By default, WooCommerce opens the first tab when the page is loaded. You can try to close it manually right after page loading by adding this code snippet to the Custom JS section in Theme Settings:

    setTimeout(function() {
        var $tab = jQuery('.woodmart-tab-wrapper').find('a.active');
       	 $tab.siblings('.wc-tab').hide();
          $tab.removeClass('active');
    }, 10);

    Best Regards.

    #185940

    mintudas
    Participant

    Thank you very much!

    Regards,
    Mintu

    #185944

    Hello,

    We are thrilled that you loved your experience with XTEMOS, We put customer experience and satisfaction as our priority, and your words reaffirms the hard work we put in every day. So thanks for your kind words and we look forward to seeing you again.

    Let us know if there’s anything else we can do for you! You can always reach us at any time. We are always here to help you.

    Have a wonderful day.

    Topic Closed.
    Best Regards.

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

The topic ‘Accordion Tab signs’ is closed to new replies.