See http://contactform7.com/recaptcha/
Make sure you have set up reCAPTCHA keys.
SK
(@sooskriszta)
I’m having the same issue, and yes, I have set up reCaptcha keys.
SK
(@sooskriszta)
This is what I did to fix the issue:
modules/recaptcha.php
Change lines 86-89
from
$response = wp_remote_retrieve_body( $response );
$response = json_decode( $response, true );
$is_human = isset( $response['success'] ) && true == $response['success'];
to
if($response['response']['code']=='200' && $response['response']['message']=='OK'){
$is_human = true;
}
SK
(@sooskriszta)
@takayukister Please consider applying this patch (or otherwise fixing the problem) in the next version.
I have the same issue except my error border is yellow… I will try this fix when I have the time. Thanks