Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 59525

Temporarily Locked out Message

$
0
0

Replies: 1

I have seen others have this issue and now I have it.

When I click logout after being logged into as a user, I get the “You are temporarily locked out” message.

Yes, I can see IP’s in IP detection.

I’m thinking this has to do with the login URL being changed as I’m using a plugin that changes the standard WordPress login link. I’m using “WPS Hide Login” plugin and I also have this in the theme functions as well, which redirects the registration link:

add_action( ‘login_init’, ‘user_registration_login_init’ );
function user_registration_login_init () {
if( ! is_user_logged_in() ) {
wp_redirect( ‘/my-account’ );
exit;
}
}

Any way for this to work with that code above and using a plugin to change the standard login url?

Thanks


Viewing all articles
Browse latest Browse all 59525

Trending Articles