MyBB Community Forums

Full Version: Custom Postbit Info
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So I'm trying to make it so that certain users have special text on their postbits. It would determine which user has the text on their postbit by UID. I used to have code that worked. Now it's not working. Is this code incorrect/outdated?

<if $memprofile['uid'] == 1 then>CUSTOM CONTENT HERE</if>

Thanks.
$post['uid'] should be used for the postbits
$memprofile['uid'] is for the member profile

(both are obvious from variable names ..)
(2018-04-28, 03:21 PM).m. Wrote: [ -> ]$post['uid'] should be used for the postbits
$memprofile['uid'] is for the member profile

(both are obvious from variable names ..)

Hmm.. I swear memprofile had worked previously but I might just be delusional. Toungue
Thanks.