• Resolved anonymized-14293447

    (@anonymized-14293447)


    I installed and customized quickly, however my “lost password” link redirects to a normale page of the website instead of opening the default form for retrieving passwords.
    Also I would like to move that link inside the login box.
    Please advice on the solution.

Viewing 8 replies - 1 through 8 (of 8 total)
  • 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.

    Plugin Support weblizar_support

    (@weblizar_support)

    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') );
    }
    Plugin Support weblizar_support

    (@weblizar_support)

    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.

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘lost password wrong redirection’ is closed to new replies.