MyBB Community Forums

Full Version: Custom Profile Field
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi

How to show custom profile field completely in user details. Main problem is when I add following code to "postbit_author_user", only custom profile field value shows not the code.
For example if my custom profile field is number of awards. So if a user has 2 awards, only 2 is shown. It should be like "Awards: 2" instead just 2.

Code: {$post['fidX']}

See this image: http://i.imgur.com/goawwnR.png?1
Note: You can see '0'. Why i am not getting Award: 0?

Please help!
{$post['fidX']} represents field's value. it doesn't include the field label. see related guidance
(2014-08-02, 02:23 PM).m. Wrote: [ -> ]{$post['fidX']} represents field's value. it doesn't include the field label. see related guidance
Thanks...Done!!! Smile
Sorry but why don't you simply use this "Awards: {$post['fidX']}"