MyBB Community Forums

Full Version: Can I add more detail or new item in MyBB poster profile
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I mean I want to add more thing here, for example, below reputation I want to make new column, take as example "Real name". How can I do this? And can I insert column that read specified custom profile info?

For example, "Sex" at custom profile field added below "reputation".
Thanks
[attachment=9982]
Firstly goto Users and Groups > Custom Profile Fields and create your custom profile field.

Then on the Custom profile fields page check the ID of the custom field you wish to display.

You can then add {$post['fid3']} into your postbit_author_user template. Replacing the number 3 with your custom profile field ID.
OK, and what a nice reply! Smile
Thank you for your help Smile
Thank You... Smile

for adding custom field inside post, check this mod http://mods.mybboard.net/view/extra-fields-1.1.2
Wow thanks, I prefer mods than edit, cause I don't need to revise and revise the code
OK, anyway I try to choose the manual way to gain knowledge.

[attachment=9983]

It appears like this. For example my name in here is Ivan Toar. How can I make it become "Name: Ivan Toar" instead of just Ivan Toar?

This is my first time editing templates.
Find the {$post['fid3']} (3 will be whatever your custom profile field ID is)

Replace with
Name: {$post['fid3']}

Again change the 3 to your custom profile field ID.