Forums Forums Search & Filter Pro Support implementing

Viewing 7 posts - 11 through 17 (of 17 total)
  • Anonymous
    #188114
    This reply has been marked as private.
    Anonymous
    #188116
    This reply has been marked as private.
    Trevor
    #188127

    Can you detail what else you need help with? Or is this thread resolved?

    Anonymous
    #188170
    This reply has been marked as private.
    Trevor
    #188172

    You want the titles of each field to act as the accordion toggle? If so, I do not have a code snippet for this, you would need to do this yourself.

    Anonymous
    #189264
    This reply has been marked as private.
    Trevor
    #189267

    The lightbox script, which applies the necessary javascript to open the lightbox needs to be run/triggered again after our ajax has been run.

    The basic javascript for triggering functions like this again looks like this:

    <script>(function ( $ ) {
      "use strict";
      $(document).on("sf:ajaxfinish", ".searchandfilter", function(){
        console.log("ajax complete");
    
    // so load your lightbox or JS scripts here again
    
      });
    }(jQuery));</script>

    The actual function and usage will depend on the lightbox plugin or theme you are using.

Viewing 7 posts - 11 through 17 (of 17 total)