About Me

I have decades of experience is software development using .Net Technologies, PHP and wordpress. I love coding and discovering new tech.

Blog

Fix WordPress Contact Form 7 on Elementor Popup

Javascript, Wordpress

Fix WordPress Contact Form 7 on Elementor Popup

Posted on June 16, 2023  - By Kaustav Halder - 0 Comments

Elementor is a popular editor solution for Workpress. But one difficulty that I have faced is for some reason, Contact Form 7 Ajax does not work on Elementor Popups. Below is the fix for this.

<script type=”text/javascript”>
$(document).on( ‘elementor/popup/show’, function() {
document.querySelectorAll(“.wpcf7 &gt; form”).forEach( function(e) {
if(!$(this).hasClass(‘popupInit’)) {
$(this).addClass(‘popupInit’);
wpcf7.init(e)
        }
});
});
</script>

This should help fix the contact form 7 loading issue on Elementor Popups.



About Kaustav

I have decades of experience is software development using .Net Technologies, PHP and wordpress. I love coding and discovering new tech.


0 Comments

Be the first to comment


Leave a reply

Leave a Reply

Your email address will not be published. Required fields are marked *