MyBB Community Forums

Full Version: Hide Forum Statistics from Guests
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
Please help me with Hide the following marked from the GUESTS.

[Image: untitled147.jpg]
Since you're already hiding Who's Online to guests this this can be achieved with a small core edit...

In index.php find:
// Build the forum statistics to show on the index page.
if($mybb->settings['showindexstats'] != 0)

Replace with:
// Build the forum statistics to show on the index page.
if($mybb->settings['showindexstats'] != 0 && $mybb->usergroup['canviewonline'] != 0)
But i want to Hide the only parts i circled in the Pic from the Guests, but leave the rest. The code you provided will Hide Board Statistics completely?

HIDE:

1. How many people register
2. The Most user were online.
3. Forum Statistics

Also that doesn't hide FORUM STATISTICS Smile
(2011-04-06, 03:26 PM)Yaldaram Wrote: [ -> ]You may use this guide: http://community.mybb.com/thread-50892.html

(2011-04-06, 03:26 PM)Yaldaram Wrote: [ -> ]You may use this guide: http://community.mybb.com/thread-50892.html

Thanks Yaldaram. But i want to keep some part Visible like i mentioned. But this will be also an option if what i am looking for is not possible.

Then you'll need to use the template conditionals plugin - http://mybbhacks.zingaburga.com/showthread.php?tid=464
With the above guide, you still are able to hide selective areas. You have to know how PHP is used in templates after Instaling that plugin.
Thanks Guys.

Q2. How can i Hide the Member List from the Top of the Forum for GUESTS?
Pages: 1 2 3