XF 2.2 What would be the easiest way to hide the LOGOUT link?

Solution
From the template account_visitor_menu remove this line:

Code:
<a href="{{ link('logout', null, {'t': csrf_token()}) }}" class="menu-linkRow">{{ phrase('log_out') }}</a>

Thinking about it, that doesn't hide it, it removes it of course.
Top Bottom