• Resolved Luís Peralta

    (@aeiouads)


    Hello,

    Can someone tell me how to make the standard wordpress urls like wp-admin/wp-login.php to call the Profile Builders pages instead?

    So far i only managed to set up the password recovery with

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

    https://wordpress.org/plugins/profile-builder/

Viewing 1 replies (of 1 total)
  • Plugin Author adispiac

    (@adispiac)

    Now Profile Builder login shortcode also supports 3 parameters:

    [wppb-login redirect="www.example.com" lostpassword_url="www.example.com" register_url="www.example.com"]

    So you can simply set up the password recovery page here, without using the filter above.

    For keeping your users out of the WordPress dashboard, and setting up redirects on default WP page requests (Login, Register, Dashboard) have a look into Custom Redirects module.

Viewing 1 replies (of 1 total)
  • The topic ‘Profile Builder WordPress internal redirects’ is closed to new replies.