WooCommerce changes lost password reset link

When I activate WooCommerce plugin, the lost your password does not work and can’t sent password reset email to users. But when I deactivate WooCommerce, the lost your password link at login page starts working.
Is it possible to not use WooCommerce link because it is not working and changes the reset link.

3 Answers
3

I hope think this may work.

Insert this code into php file or php insert plugin, WooCommerce will no longer change password reset link.

function reset_pass_url() {
    $siteURL = get_option('siteurl');
    return "{$siteURL}/wp-login.php?action=lostpassword";
}
add_filter( 'lostpassword_url', 'reset_pass_url', 11, 0 );

Leave a Comment