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’);