Ugh, sorry guys, the last fix was incorrect.
Here's the fix to fix everything
Create a template called showgroups_normalbit with the following info:
Code:
<tr>
<td bgcolor="$backcolor" nowrap><normalfont>$onlinestatus</normalfont></td>
<td bgcolor="$backcolor" nowrap width=100%><b><a href="member.php?s=$session[sessionhash]&action=getinfo&userid=$user[userid]"><normalfont>$user[username]</normalfont></a></b><br />$user[avatar]</td>
<td bgcolor="$backcolor" nowrap><normalfont>$user[location]</normalfont></td>
<td bgcolor="$backcolor" nowrap><normalfont>$sendpmlink</normalfont></td>
</tr>
In showgroups.php find
Code:
} else if ($usergroupid == 9) { // Mods
eval("\$modinfo .= \"".gettemplate("showgroups_modbit")."\";");
$modgrouptitle=$user['title'];
} else {
if (!$grouptitle[$usergroupid]) {
$grouptitle[$usergroupid] = $user['title'];
}
eval("\$groupinfo[$usergroupid] .= \"".gettemplate("showgroups_bit")."\";");
}
}
and replace with:
Code:
} else if ($usergroupid == 9) { // Mods
eval("\$modinfo .= \"".gettemplate("showgroups_modbit")."\";");
$modgrouptitle=$user['title'];
} else {
if (!$grouptitle[$usergroupid]) {
$grouptitle[$usergroupid] = $user['title'];
}
eval("\$groupinfo[$usergroupid] .= \"".gettemplate("showgroups_normalbit")."\";");
}
}
Zip updated. Again, sorry guys.