MyBB Community Forums

Full Version: How to print a username in a theme?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I tried {$username}, {$post['usertitle']} and {$user} but they didn't work. I need to print it in a theme.
Thanks in advance.
Depends where it is. {$mybb->user['username']} if it's to show the name of whoever is viewing the page, {$post['username']} if it's in the postbit.
I want to show the name of the user connected. For example i log in with: Trinit and i want to show Trinit, but if another user is logged as MattRogowski he will see MattRogowski and not Trinit!
I want to show the name of the user logged.
That'd be {$mybb->user['username']} then Smile
Thanks =)