Forums Forums Search & Filter Pro Multi taxonomies results in 0 search result

Viewing 10 posts - 1 through 10 (of 11 total)
  • Anonymous
    #208898

    Good day
    I really tried to solve this issue before posting here but I can not solve it.
    When I use a search form with one taxonomy everything works fine
    When using a form with several taxonomies I get 0 results
    What am I doing wrong
    Here is the link to the page that works – 1 taxonomy
    https://petlifesa.com/testsite/training-behaviour/

    page that does not wwork 4 txonomies
    https://petlifesa.com/testsite/health-wellness/

    Regards
    Heinz

    Trevor
    #208936
    This reply has been marked as private.
    Anonymous
    #208961
    This reply has been marked as private.
    Trevor
    #209007
    This reply has been marked as private.
    Anonymous
    #209013

    Hi I really dont follow

    BTW, you cannot have the same form control used like this more than once, but they don’t appear to be doing anything right now anyway.

    Meaning cant have more than one taxonomy? In the video tutorial there are 2 taxonomies used?

    I activated the plugin thta created the taxonomies and assigned them again

    I can see search results but it does not filter nor recount on the fly?

    Anonymous
    #209023

    When selecting cats it is suppose to exclude any dog articles….
    But upon choosing basic care – coat and skin it includes the dog article as well 🙁

    Trevor
    #209074
    This reply has been marked as private.
    Anonymous
    #209124

    Resolved
    Final q please
    Do you know of any good tutorial that would make it easy to custimize results page layout?
    Eg make 3 cokumns…smaller images…100 word intris etc…
    Many regards
    Heinz

    Trevor
    #209164

    At the moment you are using our Shortcode display results method. You have two alternatives:

    #1 Use the Elementor Post grid. Our plugin will integrate with this (to show any Post Type) to allow you to show results in a grid. Our guide for Elementor:

    https://searchandfilter.com/documentation/3rd-party/elementor/

    Even if you do not have Masonry enabled (it might not even be an option), use the guide for Masonry & Ajax, but, instead of this code:

    (function ( $ ) {
    	"use strict";
    	
    	// detects when the ajax request has finished and the content has been updated
    	// re-init the layout scripts from Elementor
    	$(document).on("sf:ajaxfinish", ".searchandfilter", function(){
    		elementorFrontend.init();
    	});
    	
    }(jQuery));

    Use this code:

    (function ( $ ) {
    	"use strict";
    	
    	// detects when the ajax request has finished and the content has been updated
    	// re-init the layout scripts from Elementor
    	$(document).on("sf:ajaxfinish", ".searchandfilter", function(){
    		elementorFrontend.hooks.doAction('frontend/element_ready/posts.classic', jQuery('.elementor-widget-posts'));
    	});
    	
    }(jQuery));

    Note, if you are placing the code inline on the page (in a widget), it needs the <script>.....</script> tags around it. You can often place the form shortcode, the linking filter_next_query action shortocde, and the script all in one text module.

    #2 Use our integration with the free Post Grid plugin. See here:

    https://searchandfilter.com/documentation/3rd-party/post-grid/

    Anonymous
    #209616

    Trevor we used your answers and it works perfectly thank you so much
    Just a quick one
    Is it possible to use the featured image meta description in the search results page instead of the standard excerpt
    regards
    heinz

Viewing 10 posts - 1 through 10 (of 11 total)