Conversation
supportHi 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
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