Restricting "User was last seen on..:"

Spenser

Active member
Is there a way to restrict the "User was last seen on" information to make it only available to moderators and administrators?
The information is shown if one clicks on the link on the username on the index page.
 
You can edit the appropriate templates to wrap the code in a conditional.

<xen:if is="{$visitor.is_admin} or {$visitor.is_moderator}">
This content will display to Administrators and Moderators only.
</xen:if>

You would have to do it for the member card and profile page.
 
Top Bottom