MyBB Community Forums

Full Version: How to hide forum team from guests?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, how can I prevent unregistered users from viewing the forum team members?
You mean like this page? http://community.mybboard.net/showteam.php

Unfortunately I don't think it's possibly by default but it would be a pretty simple plugin if you know some PHP.
Yes, that's what I meant.......
Wish there could have been an option in User Group's privileges to do it.....
Anyway thanks for the reply buddy.... Smile
if($mybb->user['usergroup'] == 0)
{
	error_no_permission();
}
Thanks dude.... I will try it.....