I'm trying to edit my
showgroups_usergroupbit template to display the rank image of each user in each usergroup. Basically Im just replacing the online status column with rank images of that user. I've tried using
user[rank],
prepared[rank], and
userinfo[rank] to call the rank image with no luck.
Anyone know what call I should be using?
Here's a copy of my template if it's needed.
HTML Code:
<tr>
<td class="$bgclass">$user[rank]</td>
<td class="$bgclass">
<a href="member.php?$session[sessionurl]u=$user[userid]">$user[musername]</a>
<if condition="$show['locationfield'] AND $user['field2']"><div class="smallfont" title="$vbphrase[location_perm]">$user[field2]</div></if>
</td>
<if condition="$showforums">
<td class="$bgclass"><div class="smallfont">$user[forumbits]</div></td>
</if>
</tr>
</html>