MyBB Community Forums

Full Version: How to create a new table below 'warning'
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Been playing with member.php for a while. Can't find a way to have another row below 'Warning Level:' at member.php. Can anyone point me to the right direction? Also, I made a new column in mybb_user database. How do I output the new column below the 'Warning Level:' table? Let say.. the new column name is 'newColumn'.
it would be better to use in-built custom profile fields
custom profile fields can be added easily to member profile by using {$userfields['fidX']} (where X is the Custom Profile Field ID)
Try {$memprofile['newColumn']}.
@.m. , I dont want member to be able to edit the field. Is it possible? I can't seem to find the right setting for it.

@dragonexpert, could you explain how to use it?
Locate your member_profile template. Then go like this:
<tr>
<td>Whatever Label you want.</td>
<td>{$memprofile['newColumn']}</td>
</tr>
(2015-01-29, 01:38 PM)dragonexpert Wrote: [ -> ]Locate your member_profile template. Then go like this:
<tr>
<td>Whatever Label you want.</td>
<td>{$memprofile['newColumn']}</td>
</tr>

Worked! Thanks! I cant believe it is so easy! I'm right that I choose MyBB!