• As shown here https://www.ads-software.com/support/topic/elementor-bug-with-popups/#post-11490612
    The ajax function stops to work on elementor popup

    wpdreams suggested to use this code, but it only works with click trigger. Can you have a more general solution? Like my popup appears after 6 seconds. It ins’t triggered by click

    dd_action('wp_footer', 'asl_init_on_click');
    function asl_init_on_click() {
      ?>
      <script>
      jQuery(function($){
        $('.elementor-icon-wrapper').click(function(){
          setTimeout(function(){
            ASL.initialize();  
          }, 1000);
        });
      });
      </script>
      <?php
    }
Viewing 1 replies (of 1 total)
  • Plugin Author wpdreams

    (@wpdreams)

    Hi,

    I tried to look up the Elementor API if there is any event firing before/after the pop-up is opened. Unfortunately I could not find anything, but something like that would be needed for a permanent solution. I was thinking to trigger the search init process once the pop-up opens, however I could not find anything within the Elementor API about such events. Please let me know if you know anything, or if there is any place I could find this information.

    Best,
    Ernest M.

Viewing 1 replies (of 1 total)
  • The topic ‘Popup on Elementor’ is closed to new replies.