Password Reset Problem
-
Your plugin works great but I can’t seem to figure our how to get the password reset emailed link to get bypassed. I have a whitelist (code below) but the emailed password reset links doesn’t bypass
which is in the email that redirects to
https://www.staging.telleyz.com/lost-password/?action=rp&login=allcal&key=hfhfhghghf
Staging domain: https://www.staging.telleyz.com
================
How do I fix this?
=================function my_forcelogin_whitelist( $whitelist ) {
$whitelist[] = home_url( ‘/login/’ );
$whitelist[] = home_url( ‘/’ );
$whitelist[] = home_url( ‘/location/’ );
$whitelist[] = home_url( ‘/register/’ );
$whitelist[] = home_url( ‘/activate/’ );
$whitelist[] = home_url( ‘wp-login.php’ );
$whitelist[] = home_url( ‘/lost-password/’ );return $whitelist;
}
add_filter( ‘v_forcelogin_whitelist’, ‘my_forcelogin_whitelist’ );The page I need help with: [log in to see the link]
- The topic ‘Password Reset Problem’ is closed to new replies.