• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

Set redirect after logout

Jake Bunce

Well-known member
(per this post)

Currently when a member logs out of my forums they are instantly taken to the forums. I would like to change this behavior and allow the user to stay on the same page they were viewing at the time they logged out. Can anyone point me in the right direction?

Edit this template:

Admin CP -> Appearance -> Templates -> navigation_visitor_tab

Search for "logout". There are a few instances of the link, like this:

Code:
<a href="{xen:link logout, '', '_xfToken={$visitor.csrf_token_page}'}" class="LogOut">

Add a redirect, like this:

Code:
<a href="{xen:link logout, '', '_xfToken={$visitor.csrf_token_page}', 'redirect={$requestPaths.requestUri}'}" class="LogOut">

I tested this and it works.
 
Top Bottom