MyBB Community Forums

Full Version: show some text only to guest
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i made a page for mybb example domain.com/snake.php
but here i did not use my theme on it. its different looking page.
but here i want to show some text only for the guest. what i have to do?
if you want PHP code you must use this condition

if($mybb->user['uid'] == 0)
{
//Content that you want show to guests
}
thank you i got this