WooCommerce Login URL Reset
-
WooCommerce changes the URL users get redirected to to reset the password. This page is locked protected by “Logged in only” so the user never reaches this page.
To fix this the following snipped can be used:
/* * Reset the password reset link to wp default if WooCommerce is active */ function logged_in_only_check_for_url_reset() { // Unset the url filter from WooCommerce remove_filter( 'lostpassword_url', 'wc_lostpassword_url', 10 ); } add_action( 'plugins_loaded', 'logged_in_only_check_for_url_reset' );
Maybe something to add to the plugin in a further version.
- The topic ‘WooCommerce Login URL Reset’ is closed to new replies.