In Template FORUMHOME
FIND
Code:
<if condition="$show['loggedinusers']">
REPLACE that with
Code:
<if condition="$show['loggedinusers'] and ($permissions['wolpermissions'] & CANWHOSONLINE)">
Instead of editing the template you can also make a file edit and don't touch the template (this way you might also save processing-time):
In File index.php FIND
PHP Code:
if ($vboptions['displayloggedin'])
REPLACE that with
PHP Code:
if ($vboptions['displayloggedin'] and ($permissions['wolpermissions'] & CANWHOSONLINE))
Now only users that are members of usergroups which are allowed to View Who's online can see this.