• Resolved ahkolon

    (@ahkolon)


    Hi there,

    Is there a code snippet to be able to redirect the temporary login users to the intended URL? Or a way to achieve this?

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,

    In the upcoming version, I will add the following filter ( callback hook function ) : login_me_now_temporary_login_redirect_uri

    Then you can redirect temporary login user to intended URL using this code snippet:

    add_filter(‘login_me_now_temporary_login_redirect_uri’, function(){
    return site_url(‘sample-page’);
    });

    You can add this code snippet in your theme’s functions.php file

    When the new version is released , I will follow up and let you know.

    Regards,
    Faruk

    Thread Starter ahkolon

    (@ahkolon)

    Thank you

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

The topic ‘Login redirection’ is closed to new replies.