How to disable the Online Status Indicator?

nrep

Well-known member
I'm looking for a way to disable the user online status indicators for guests. I can see how I could do this in templates, however I don't know if this would reduce all of the queries for the session table (which is causes problems for me).

If I removed this code for guests, would I stop the indicator from appearing or would it reduce queries on the session table?:

Code:
<xen:if is="{$user.isOnline}"><span class="Tooltip onlineMarker" title="{xen:phrase online_now}" data-offsetX="-22" data-offsetY="-8"></span></xen:if>
 
Top Bottom