MyBB Community Forums

Full Version: Displaying Text for Specific Username/UID
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What kind of statement would I have to create in order to display some text or even redirect a user based off their UID. So for example if I wanted the person with User ID 4 to have some text on top of the screen how would I do that and make sure it only displays for that specific user.

It's a strange support request, but any help would be appreciated.
Thanks,
Ben
in general, we use template conditionals plugin for such requirement and add the required content in header template
<if $mybb->user['uid'] == X then>required content</if>
X is user id (uid)