Advertisement
simkoG

Untitled

Jan 7th, 2020
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. function elementor_frontend_js(){ ?>
  2. <script>
  3. (function($) {
  4.     "use strict";
  5.  
  6.     // detects when the ajax request has finished and the content has been updated
  7.     // re-init the layout scripts from Elementor
  8.     $(document).on("sf:ajaxfinish", ".searchandfilter", function() {
  9.         elementorFrontend.init();
  10.     });
  11.  
  12. }(jQuery));
  13. </script>
  14. <?php }
  15.  
  16. add_action( 'wp_footer', 'elementor_frontend_js' ); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement