MyBB Community Forums

Full Version: Hide Board Statistics
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to hide "Board Statistics" from guests only?
The whole block [ Birthdays, Statistiscs and WhosOnline ] or just the statistics. The whole block would take more work, templatechange etc. , cause the "Board statistics" itself isn't in a seperated template, its all in the index template, hiding the statistics/birthdays and whosonline is easier, just a codechange, but then the only thing that's left is that header that says "Board Statistics" , no quite "pro" Wink
Well i was looking for whole but since you said it is going to be hard can only "Statistics" be hide then from the guests?
DragonLord Wrote:Well i was looking for whole but since you said it is going to be hard can only "Statistics" be hide then from the guests?

Open index.php

Find
// Build the forum statistics to show on the index page.
if($mybb->settings['showindexstats'] != "no")

Replace by
// Build the forum statistics to show on the index page.
if($mybb->settings['showindexstats'] != "no" && $mybb->user['uid'] != 0)
Thanks "LeX-" it worked Smile

... just a question can "Advanced Stats on Index" be hide from the guests? if it can be done can you tell me please.