MyBB Community Forums

Full Version: Displaying Custom User Fields?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I display custom user fields next to :

Posts:
Joined:
Reputation:
Warning Level:



...so it looks like :


Posts:
Joined:
Reputation:
Warning Level:
Custom User Field:



Thanks in advance
There's a tutorial that should help - http://community.mybb.com/thread-41233.html
Oh, ok I'll try this tomorrow. I still need help with this : http://community.mybb.com/thread-76473-p...#pid558968
Hello,

What is the field shortcut to use to print a user custom field ?

For example, what is the if my custom field'name is "test1" and I add this in a template :

{$post['test1']}

it is not working.

Any idea ? Regards.
(2010-08-24, 02:29 PM)laurentw Wrote: [ -> ]Any idea ?

(2010-08-19, 06:58 PM)AJS Wrote: [ -> ]There's a tutorial that should help - http://community.mybb.com/thread-41233.html

Yes, I've seen, but what's is exactly the code to print the custom field. To print the gender, it's not a problem because it is not a custom field...

(2010-08-24, 02:43 PM)AJS Wrote: [ -> ]
(2010-08-24, 02:29 PM)laurentw Wrote: [ -> ]Any idea ?

(2010-08-19, 06:58 PM)AJS Wrote: [ -> ]There's a tutorial that should help - http://community.mybb.com/thread-41233.html

(2008-11-30, 05:48 AM)danrulz98 Wrote: [ -> ]If you want to add something else to the postbit, go to the tab with the "Custom Profile Fields" settings open and look at the ID number for what you want to add to the postbit.
Where you want it to come up, put this code:
{$post['fidX']}
Make sure you replace X with the ID number of the custom profile field.
That's about it!

Is it really so hard to understand?
working well ! Thanks a lot.