Author of the modification :
Sofia
This modification allows to show the avatars in the forum leaders
In the template "showgroups_usergroup", find :
PHP Code:
<td class="tcat" colspan="3">$user[title]</td>
Replace with :
PHP Code:
<td class="tcat" colspan="4">$user[title]</td>
In the same template, find :
PHP Code:
<td class="thead"> </td>
Add below :
PHP Code:
<td class="thead">Avatar</td>
In the template "showgroups_usergroupbit", find :
PHP Code:
<td class="$bgclass">$user[onlinestatus]</td>
Add below :
PHP Code:
<td class="$bgclass"><img src="image.php?$session[sessionurl]u=$user[userid]&dateline=$user[dateline]" border=0 width="x" height="y"/></td>
* In this code, you have this: width = "x" height = "y". It defines the limit size of the avatar in pixel. You can personalize this size by changing x and y...