PDA

View Full Version : Image next to specific users name


DeadlyDuckling
08-09-2012, 05:51 PM
is there a way i can put an image next to a single persons name,:confused: not the whole usergroup

--------------- Added 1344582042 at 1344582042 ---------------

anyone?

kh99
08-12-2012, 01:41 PM
You might be able to create a plugin using hook fetch_musername and change $user['musername'] if $user['userid'] matches the user, like:

if ($user['userid'] == X)
{
$user['musername'] = "<img src="some img url" /> " . $user['musername'];
}