MyBB Community Forums

Full Version: show avatars in members list
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
is there anyway to show memeber's avatar in members list ?
thanks Toungue
Open memberlist_row template

Find

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

After Add

<td class="trow2"><img src="$users[avatar]" /></td>

Open memberlist template

Find twice

colspan="7"

Replace By

colspan="8"

Find

<td class="tcat"><span class="smalltext"><strong>$lang->posts</strong></span></td>

After Add

<td class="tcat"><span class="smalltext"><strong>Avatar:</strong></span></td>
hi`,i will try right now,thank you very much!