Forums Forums Search & Filter Pro Support implementing

Viewing 10 posts - 1 through 10 (of 17 total)
  • Anonymous
    #186202

    Hi,

    As I’m not good at implementing this plugin, my question is if I can get your support for this?

    Regards,
    Maarten

    Trevor
    #186206

    Have you made a form and something has gone wrong?

    Anonymous
    #186212
    This reply has been marked as private.
    Trevor
    #186226
    This reply has been marked as private.
    Trevor
    #186320
    This reply has been marked as private.
    Trevor
    #186395
    This reply has been marked as private.
    Anonymous
    #186503
    This reply has been marked as private.
    Trevor
    #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) to ON

    And then in the Form UI:

    In each field set Hide Empty to ON

    Anonymous
    #187972
    This reply has been marked as private.
    Trevor
    #188050

    Is 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>
Viewing 10 posts - 1 through 10 (of 17 total)