MyBB Community Forums

Full Version: SideBox help?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have the sidebox http://mods.mybb.com/view/sidebox
works perfect but the thing is i dont want it to be shown on the index when a guest visits the site...

what can i do or what to i need to edit ?

thanks for the help
Open plugin file and find;
$portal_url='member.php';

And add the following code just AFTER that line;
	if ($mybb->user['uid'] == "0")
	{
		return;
	}