MyBB Community Forums

Full Version: Hide content/tables from registered users
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What i would like to do is hide the welcome boxes i have on my portal and forum index when a registered user logs in. I only want them to display when a guest is viewing.

www.gw2insanity.com
Install the Template Conditionals plugin and use this code:

<if !$mybb->user['uid'] then>
	<-- Welcome box code -->
</if>
Thanks, works perfect Smile