• Hi, the plugin does not work when you don’t scroll. According to the code this is a feature, but therefore the plugin cannot be used when you have the contact form in modal or in the viewport (so you don’t need to scroll).

    Wouldn’t be better to fire the loading of grecaptcha on mousemove event, or other?

    Temporarily fixed it by adding

    <script>
        // recaptcha hack
        window.addEventListener("DOMContentLoaded", function(){
            window.scrollTo(window.scrollX, window.scrollY - 1);
            window.scrollTo(window.scrollX, window.scrollY + 1);
        });
    </script>

    to the footer.php

  • The topic ‘Not working without the scrolling’ is closed to new replies.