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
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