MyBB Community Forums

Full Version: How to display field in postbit?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I used to know how to do this but now I cannot remember.

I would like to have a profile category "location" and modify the template so that location is displayed above each member's post count in the postbit for each post.

How do I do this?

Thank you!

Forum is running 1.6
In postbit_author_user template, add the following code just above the {$post['postnum']} code;
Location: {$post['fidX']}

Replace X with the location Custom Field ID.
Thank you very much!
Thanks =)