Recaptcha on multisite partially working (original) (raw)
Viewing 4 replies - 1 through 4 (of 4 total)
- Hi @alfio8788, thanks for your message.
Officially, 2FA and reCAPTCHA enabled through Wordfence is currently compatible with the default WordPress login forms although we are working to expand this in future releases.
From the link you provided, I do actually see a reCAPTCHA check below the email field. Did you start using a different reCAPTCHA plugin or is this a result of never having loaded the page before? If it’s the latter, you may need to clear your browser cache to get the updated signup page.
Thanks,
Peter.
Hello,
I started using another plugin while waiting because they were hammering the form really bad, as for wordfence, everything i tried wasn’t working. (it is working only if i disabled multisite but that is a no no on our production server).
What i noticed is that in multisite wp-signup is used instead of the normal registration page, i’m pretty sure it’s just about adding some extra hooks but i couldn’t find anything in the documentation regarding recaptcha and the login page hooks so i had to delay due to lack of time and opt for an extra plugin.
wp-login.php
case 'register':
if ( is_multisite() ) {
/**
* Filters the Multisite sign up URL.
*
* @since 3.0.0
*
* @param string $sign_up_url The sign up URL.
*/
wp_redirect( apply_filters( 'wp_signup_location', network_site_url( 'wp-signup.php' ) ) );
exit;
} wp-signup.php
if ( ! is_multisite() ) {
wp_redirect( wp_registration_url() );
die();
} In hope to help both
Thanks again
Hi @alfio8788,
Thanks for your feedback. I will submit your request along with possible code suggestions to see if the multisite registration page seen here will be considered in the expansion of 2FA and reCAPTCHA from the default login and registration pages.
We are working already to expand this functionality so whilst I cannot comment on the timescale of this release on the forums, we are working to bring it to our customers.
Thanks and take care,
Peter.
Hello and sorry to take your time,
I only wanted to say thank you for the support, we will be waiting this feature in a future version.
P.S.: This thread can now be closed.
Thanks again and Best Regards
Viewing 4 replies - 1 through 4 (of 4 total)