MyBB Community Forums

Full Version: How can I remove the avatar column from the memberlist?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'd like there to be no avatar column on memberlist.php, but I'm not sure how to get rid of it.

I looked in the template for memberlist, but didn't find anything useful.
remove below line from memberlist template
<td class="tcat" width="1%"><span class="smalltext"><strong>{$lang->avatar}</strong></span></td>

and blank out (that is remove everything) memberlist_user_avatar template
(2013-04-08, 03:34 PM).m. Wrote: [ -> ]remove below line from memberlist template
<td class="tcat" width="1%"><span class="smalltext"><strong>{$lang->avatar}</strong></span></td>

and blank out (that is remove everything) memberlist_user_avatar template

That broke the columns. They're all out of line, and the information is under the wrong column.

However, I did find out how to fix that.

In memberlist_user, remove
<td class="{$alt_bg}" align="center">{$user['avatar']}</td>

and the columns will be reverted back to normal, with the avatar column gone.

Thanks a lot Big Grin
^ oh! I missed that. Thanks Smile