• Resolved frangoaoalho

    (@frangoaoalho)


    I created a Search Page Template in Elementor Template Builder.
    Is the only template for Search or Achives.

    When I search through any other search bar widget, I go to the right place, which is:

    https://galeve.com/?s=prod&post_type (this goes to where the Elementor Search Template is active)

    When I search through FiboSearch, I go to:

    https://galeve.com/?s=prod&post_type<span style=”text-decoration: underline;”>=product&dgwt_wcas=1</span>
    (Which leads me to a weird default search template)

    All is properly set up, as it actually leads me to the Elementor Search Page Template through the other search widgets (Elementor and WordPress Search):
    Template is only one;
    Condition is Search page;

    Please help as I want to stick with your plugin. Cheers

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

Viewing 1 replies (of 1 total)
  • Plugin Support Kris

    (@c0nst)

    Hi @frangoaoalho

    Occasionally, the process of excluding “Search Results” from the Shop page may not function as expected. In such instances, you can resolve this issue by creating an empty file named search.php within the root directory of your child theme and inserting the provided code below. The template_id variable corresponds to the post ID of the Elementor template that displays WooCommerce search results. To locate this ID, navigate to Templates -> Theme Builder -> Products Archive and open the template designed for displaying search results. The URL format should resemble this: https://your-domain.com/wp-admin/post.php?post=100&action=elementor. In this particular example, the template_id is set to “100,” but in your situation, it will be a distinct numerical value.

    <?php
    $frontend    = new \Elementor\Frontend();
    $template_id = 100; // Your search results template ID
    echo $frontend->get_builder_content_for_display( $template_id, $with_css = true );

    Regards,
    Kris

Viewing 1 replies (of 1 total)
  • The topic ‘FiboSeach not assuming Elementor Search Template’ is closed to new replies.