Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @maxkrak

    Try adding this to your theme/child-theme’s functions.php file or use the Code Snippet plugin to run the code:

    function um_071921_login_url ( $login_url, $redirect, $force_reauth ) {
        if( ! function_exists('um_get_core_page') ) return $login_url;
    
        return um_get_core_page('login') . '?redirect_to=' . $redirect;
    }
    add_filter( 'login_url', 'um_071921_login_url', 10, 3);

    The above code will change the Login URL to UM Login page URL but this depends on your theme if that link is not created with the filter login_url then you will have to contact your theme developer to look into this.

    Regards,

    Thread Starter maxkrak

    (@maxkrak)

    Thanks a lot! Problem solved!

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @maxkrak

    Thanks for letting us know.

    Regards,

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

The topic ‘Login page from comments’ is closed to new replies.