Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author adispiac

    (@adispiac)

    Hi,
    We’ve added a new filter in version 2 which you can use to redirect users to a custom page (like Recover Password) when the “Lost Password” link from Login is hit.

    The update will be released beginning next week.

    You’ll simply need to add this to your theme functions.php file:

    function change_lost_password_link( $LostPassURL){
        $LostPassURL = home_url('/recover-password');
        return $LostPassURL;
    }
    add_filter('wppb_pre_login_url_filter','change_lost_password_link', 2);

    Make sure to change ‘/recover-password’ with your desired page link.

    Thread Starter therqworld

    (@therqworld)

    Excellent! thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Redirect to a page after "Lost Password" link is hit.’ is closed to new replies.