• Resolved vampire83

    (@vampire83)


    Hi !
    Are you sure that recaptcha works with woocommerce ?! because I have some issues on a few websites.
    For the login page from WordPress it’s ok, perfect
    But from the login or register page from client account, there is a fatal error !
    because V2 Checkbox doesn’t appear on woocommerce/my account page… suddenly we can not check anything and that creates the error.

    Thanks for your help :))

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Nithin – WPMU DEV Support

    (@wpmudevsupport11)

    Hi @vampire83,

    I’m afraid, at the moment Defenders reCaptcha isn’t fully compatibly with WooCommerce. We already have an integration planned in version 2.6.1, but at the moment there isn’t an exact ETA that we could provide.

    Is there a log of the fatal error that you faced regarding this? I tried to replicate but wasn’t able to notice any fatal error, but could notice I couldn’t log in due to reCaptcha. If there are any further details you could provide regarding the fatal error then please do share, so that it would help in troubleshooting it further if needed.

    In the meanwhile, regarding the login issue, you can try the following snippet for now, which should resolve the login issue:

    <?php
    
    add_filter( 'wd_recaptcha_excluded_requests', 'custom_defender_filter' );
    function custom_defender_filter( $data ){
    	$data[] = '/my-account/';
    	return $data;
    }

    The above code can be added as a mu-plugins. Please check this link on how to implement the above code as a mu-plugins:
    https://premium.wpmudev.org/docs/using-wordpress/installing-wordpress-plugins/#installing-mu-plugins

    Looking forward to your response.

    Kind Regards,
    Nithin

    Plugin Support Nithin – WPMU DEV Support

    (@wpmudevsupport11)

    Hi @vampire83,

    Since we haven’t heard from you for a while. I’ll mark this thread as resolved for now. Please feel free to re-open the thread if you need further assistance.

    Best Regards
    Nithin

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Recaptcha not working with woocommerce’ is closed to new replies.