Forums › Forums › Search & Filter Pro › Support implementing
- This topic has 16 replies, 2 voices, and was last updated 7 years, 6 months ago by
Trevor.
-
Trevor(Private) August 28, 2018 at 3:20 pm #186611
These four are all the same ‘Category’ taxonomy, yes? You are currently using just one taxonomy (Category) for the four main categories, but actually need three more (one for each) (or you could make four new taxonomies) and use Category for more general use, that is what I would do.
The reason for this is that, in general, you can use a particular Taxonomy (or Category/Tags, each Taxonomy and each Custom Field) only once in the form. As suggested above, you would need to make additional custom taxonomies. This post tries to explain this a bit better (you can use a plugin to switch category terms from category to any new taxonomy that you make, so it is not so hard to do). It is a really awful preachy lecture I wrote:
https://support.searchandfilter.com/forums/topic/multiple-categories-combination/#post-55166
Sorry about the tone, but the message is right and it links to good plugins (except taxonomy switcher I think).
IF you need to get one filter change to when another is set with an option, on the General settings tab:
Set
Auto Count(both settings) toONAnd then in the Form UI:
In each field set
Hide EmptytoONTrevor(Private) September 11, 2018 at 2:08 pm #188050Is the fancybox being added by a plugin or your theme? It needs to be reapplied after an ajax call. It can normally be applied one of two ways to a page, both on document load.
The first is to simple run a script on document page load. The second is to set the script as a function, and then call that.
You would need to call whatever is used inside a script like this:
<script>(function ( $ ) { "use strict"; $(document).on("sf:ajaxfinish", ".searchandfilter", function(){ console.log("ajax complete"); // call your function(s) here }); }(jQuery));</script> -
AuthorPosts