Hey @envisiondesign, have you tried to reset the password on the default wp admin login page/try to disable the custom login plugin?
I have disabled Ultimate Member
I log out and hit Lost Password.
I enter username
I get no email.
———
PS,
I enabled UM again, logged out and hit Lost Password
I get an email
I have enable/disabled a couple of times.
Now:
no member manager active
Log out
lost password
get email
I leave the autogenerated password (copy it)
submit
login screen
Error: The password you entered for the username GardenClubAdmin is incorrect.
My previous password still works
Thanks for the help, sorry to waste your time. Turns out (I think) to be something in the functions file of the child theme. Not sure why this is in there, but when I comment it out, the system seems to work as expected.
function wpse_lost_password_redirect() {
wp_redirect( ‘https://tacomagardenclub.org/members-home/’ ); // Change home_url() to your desired URL
exit;
}
add_action(‘password_reset’, ‘wpse_lost_password_redirect’);