Actually, if you have predefined Avatars as well, use the following code on memberlistbit
template:
<td bgcolor="second alt color"><img src="$avatarurl" border="0" align="middle"></td>
instead. Then modify memberlist.php and add:
// Avatar Hack
if ($userinfo[userid]!=0) {
$avatarurl=getavatarurl($userinfo[userid]);
if ($avatarurl=='') {
$avatarurl='images/space.gif';
}
}
// Avatar Hack
Lastly, add Avatar as a column on the memberlist template
|