• Resolved barnabas1

    (@barnabas1)


    Hello,

    When you enter the bookstore page the fibo search shortcode works, but how can I enable it to work also for the category pages?

    Thank you,
    Barnabas

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Marta

    (@martadella)

    Hi

    You’re using the Astra theme and I’m sure there are different ways to add FiboSearch to product category pages.

    One way is to use the following code snippet:

    add_action( 'astra_content_before', function () {
      if (is_product_category()) { ?>
        <div id="fibosearch-div">
          <?php echo do_shortcode('[fibosearch]'); ?>
        </div>
        <?php
      }
    } );

    You can add it to your functions.php file or the Code Snippets plugin.

    Let me know if this is helpful!

    Regards,
    Marta

    Thread Starter barnabas1

    (@barnabas1)

    Thank you Marta,

    Indeed there are various places I can add the search bar with the Astra theme and I’m not sure what is best with all these possibilities.

    The solution above works excellent and provided yet another possibility on how to use the search bar.

    Thanks a lot!

    Best regards,
    Barnabas

    Plugin Support Marta

    (@martadella)

    Hi Barnabas,

    Great job! ??

    Regards,
    Marta

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Shortcode storewise’ is closed to new replies.