Forums Forums Search & Filter Pro Elementor pro post grid Issues (pagination and image render post filter)

Viewing 10 posts - 1 through 10 (of 16 total)
  • Trevor
    #191836

    If you are using this code from our documentation:

    (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));

    It needs to be changed to:

    (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));

    Can you try that?

    Anonymous
    #191838

    Hi Trevor,

    I am using purely the short codes. I have not inserted any code.

    Thanks,

    Sara

    Trevor
    #191884
    This reply has been marked as private.
    Anonymous
    #191923
    This reply has been marked as private.
    Trevor
    #191936

    It is difficult to tell what the issue is without being able to see it. Our internal testing shows Elementor works provided you follow the guide (and addendum about that script).

    Anonymous
    #191944

    I did not add any additional script. Where should I add this too?

    Trevor
    #191946

    If you don’t have any facility or plugin to add scripts, then install this plugin:

    TC Custom JavaScript

    Anonymous
    #191965

    I added this script but no change

    Anonymous
    #191994
    This reply has been marked as private.
    Anonymous
    #192049
    This reply has been marked as private.
Viewing 10 posts - 1 through 10 (of 16 total)