Hello,
I found a fix!
Add this to your functions.php :
function wp_recaptcha_cf7_fix($default) {
global $post;
if(is_a($post, ‘WP_Post’) && has_shortcode($post->post_content, ‘contact-form-7’)) {
return false;
}
return $default;
}
add_filter(‘wp_recaptcha_do_scripts’, ‘wp_recaptcha_cf7_fix’);
add_filter(‘wp_recaptcha_required’, ‘wp_recaptcha_cf7_fix’);
Hello,
I am having the same issue. Is there a way around this?
Thanks!
Hello @shavonn4prez,
I seem to have the same issue. Can you please elaborate on how you fixed it. Can you perhaps point out where I should remove the cookie check from?
Cheers,
hasangee