MyBB Community Forums

Full Version: hiding thread from guests?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hello

when ever i try hide threads from guests my forum become like this:

[Image: dsds.png]


so is there away to hide threads from guests but show the thread title in the home page ?
Not without a plugin. Your other option is to modify /inc/functions_forumlist.php to suit your needs. You can check if a user is a guest by doing
if(!$mybb->user['uid']) // Guest
{
// Some code here
}

It does seem odd though that you want them to be able to see thread titles, but not the threads themselves.
thank you PhantomD it worked