WPIntell

Source evidence

Login redirection

Login Me Now – Passwordless, Magic Link, OTP & Social Login for WordPress · support · 2024-02-28T12:42:00+00:00

questionsentiment
lowseverity
0.56relevance
2replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

8 / 34 rows with source links

23.5% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

26 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
ahkolon resolved
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. 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 Thank you

Comments

2 shown
Faruk Ahmed 2024-03-03T02:56:00+00:00

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

ahkolon 2024-03-05T09:40:00+00:00

Thank you