reCAPTCHA Issue: FIXED!
-
For months I’ve been having issues integrating reCAPTCHA on my sites. If I enabled reCAPTCHA, my form would error and the email wouldn’t send. If I removed the reCAPTCHA, the form worked just fine. I’ve made several themes on my own, but I just learned today that WordPress injects important code into the header and footer via wp_head and wp_footer. Adding these to my theme fixed the issue!
Add:
<?php wp_head(); ?>to the header.php
Add:<?php wp_footer(); ?>to the footer.phpI read CF7’s docs over and over and I couldn’t figure it out so I figured I’d post this hear to help everyone. I hope this helps.
The topic ‘reCAPTCHA Issue: FIXED!’ is closed to new replies.