MyBB Community Forums

Full Version: Custom profile field in memberlist.php
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I have searched for this in the wiki and forum.

How would I go about adding one of my custom profile fields to the memberlist.php? So it would show up alongside the posts and other information.

Thank You
in Admin CP > Templates > Modify/ Delete > Expand > member list templates > memberlist_row

find

<td class="trow2">{$users['postnum']}</td>

below it add

<td class="trow1">{$users['fidX']}</td>

Replace X with the custom field ID, you can find it in the custom profiles fields manager.

Now in Admin CP > Templates > Modify/ Delete > Expand > member list templates > memberlist

find 2 times

 colspan="8"

make it
colspan="9"

in the same place, find
<td class="tcat"><span class="smalltext"><strong>{$lang->posts}</strong></span></td> 

below it add

 <td class="tcat"><span class="smalltext"><strong>Custom Field:</strong></span></td>
Thanks! Works great Smile