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.

Topic woocommerce-offtopic reset password Wordpress

Category Web


Another way to do this is to add this to your theme's functions.php file:

remove_filter('lostpassword_url', 'wc_lostpassword_url', 10, 1);

This removes the modification added by WooCommerce.


If you'd like to do this without code, open the WordPress admin and then click "WooCommerce", "Settings", "Advanced". Under "Account Endpoints", delete "lost-password" from the "Lost password" field.


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 );

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.