MyBB Community Forums

Full Version: Hide Board Statistics to Guests?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do you hide the board statistics to guests?
1. Install the PHP in Templates and Template Conditionals plugin.

2. Go to Admin CP > Templates & Style > Templates > Your Template Set > Index Page Templates > index.

3. Find

{$boardstats}

4. Replace with:

<if $mybb->user['usergroup'] != 1 then>
{$boardstats}
</if>

5. Save the template.
Thanks for the above. That did the job.