Quote:
Originally Posted by kh99
I'm not sure if this exists already, but you could create a plugin using hook fetch_musername and add image code to $user['musername']. Like:
Code:
if (is_member_of($user, X):
{
$user['musername'] = "<img src='images/someimg.gif'>" . $user['musername'];
}
|
Thanks Kh99,
But is this;
If User is UserID add image or If user is a member of UsergroupID add images?
The second would be preferred ofcourse, but I shall try this nonetheless.