Hi arsenalemusica,
Could you please share your site admin URL?
We will check this.
Thnaks
Thread Starter
anonymized-14293447
(@anonymized-14293447)
I believe there’s a conflict with the lostpassword script that resides in that page, (plugin Download Manager).
Do you have a private email I can send you admin details?
Hi Arsenalemusica,
We have de-activated Custom Login Plugin plugin.
Still Forgot Password link redirecting on different page.
That’s means the error not due to Custom Login Plugin.
There other plugins/theme changing the link.
Suggestion: try to deactivate all plugin one by one.
We hope that helps you.
Thanks for using our plugin.
Thanks
Thread Starter
anonymized-14293447
(@anonymized-14293447)
I confirm, the conflict is caused by Woocommerce! Now, that’s real trouble since my site is dependent on it.
Hello arsenalemusica,
you can contact to the support members of the “Woocommerce”, they will surely help you out. As we cannot do anything of it, if you have any problem regarding our plugin we are always here to help you anytime.
Thanks.
Thread Starter
anonymized-14293447
(@anonymized-14293447)
I actually solved and forgot to write the solution here. 🙂 This may happen also with any other plugin, so it’s udeful to anyone with the same problem just to add this code to your childtheme’s function.php;
add_filter('lostpassword_url','lostpassword_url_default', 50, 2);
function lostpassword_url_default(){
$args = array( 'action' => 'lostpassword' );
return add_query_arg( $args, network_site_url('wp-login.php', 'login') );
}
Hello arsenalemusica,
thanks for mentioning the code..this may help other users facing the same kind of trouble, we appreciate your effort.
Thanks.
I tried this code as suggested by arsenalemusic:
add_filter(‘lostpassword_url’,’lostpassword_url_default’, 50, 2);
function lostpassword_url_default(){
$args = array( ‘action’ => ‘lostpassword’ );
return add_query_arg( $args, network_site_url(‘wp-login.php’, ‘login’) );
}
However it just broke my site. No pages could be accessed.