Quote:
Today at 10:58 AM corsacrazy said this in Post #25
nice one ! im tryin to make some additions also ! but i cant figure out the variable to select the premium mebers ? is it somthing like
userinfo[premium] ! because i want to add a small icon next to the premium peoples usernames in the whos online bit on forumhome
|
It depends on the file you are using. Sometimes it is $bbuserinfo[premium] Sometimes it is $userinfo[premium] . Just check to see what other user variables are in that section of code and it is the same.
To do what you want to do, try this:
In online.php Find:
Code:
} else if (($mod["$key"] or $user['usergroupid'] == 5)and $highlightadmin) {
$userinfo["$key"]['username'] = "<b>$user[username]</b>";
Add After:
Code:
} else if ($user['premium'])and $highlightadmin) {
$userinfo["$key"]['username'] = "<img src="Put icon here."><b>$user[username]</b>";
Just put your icon url where I have "Put Icon Here"
Amy