MyBB Community Forums

Full Version: Show only for logged in users
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What is the code for only displaying content for logged in users in templates?

something like
<---BEGIN LOGGED_IN ONLY--->
if you are logged in, you will see this. otherwise, this is inviable.
<---END LOGGED_IN ONLY--->

Thanks Big Grin
You can't do this in templates by default, you need to install the PHP in templates plugin.
Once you have the plugin listed above, use this code:

if(!$mybb->user['uid'])
error_no_permission();
}
// place your PHP/templates/HTML/whatever code below the bracket above, or just below this line
Thank you all! Big Grin