Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Chad Butler

    (@cbutlerjr)

    It was included in version 3.0.2. Select it in the plugin’s options tab.

    Thread Starter meglos42

    (@meglos42)

    Of course I should have checked this first as I haven’t updated yet to the latest version.
    Many thanks for replying so quickly.
    Unfortunately I’m getting an error on successful submission –
    Warning: Illegal string offset ‘success’ in /wp-content/plugins/wp-members/inc/register.php on line 214

    Plugin Author Chad Butler

    (@cbutlerjr)

    Looks like there is a fix needed. If you could try this out and let me know how it works out, that would be great – then I will patch it in the next release.

    In the file /inc/register.php, line 214 is this:

    if ( $response['success'] == false ) {

    Just before it, add $response = json_decode( $response, true ); so that it looks like this:

    $response = json_decode( $response, true );
    if ( $response['success'] == false ) {
    Thread Starter meglos42

    (@meglos42)

    Thanks Chad, looks like that’s fixed it! ??

    Plugin Author Chad Butler

    (@cbutlerjr)

    Thanks for the update – I’ll incorporate that into the next release.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘reCaptcha V2’ is closed to new replies.