Log off of XF = forums page

Ryan Kent

Well-known member
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