View Single Post
  #4  
Old 04-18-2009, 08:25 PM
BMR777 BMR777 is offline
Member
 
Join Date: Jan 2011
Posts: 1,122
Gender: Male
Credits: 11,305
BMR777 is on a distinguished road
Default RE: Stars by names on Members list

You're right. The code I posted changes it for the actual profile, not for the member list. :)

Anyway, remove the $status = cancp($level); line. Then add this:

PHP Code:
if($level == 1){

// Show a star for the admin

$star "<img src='templates/icons/star.gif' border=0'> ";
}
else if(
$level == 2){

// Show something else for usergroup 2

$star "<img src='templates/icons/icon.gif' border=0'> ";

And so on. :)
Reply With Quote