Yeah !!!
But there isn't any lot of hard work required to do that !!!
I'll tell you a method to do that !!!
You can do that all things which I've given in the Mouse Hover Avatar MOD,
except Changes in maincore.phpThen Just put this code before, where the Link is defined, i.e, Before some lines :
Before some lines from:
[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]<a href='profile.php?lookup=".$data['user_id']."'>[/syntaxhighlighter]
Find this line in your PHP Files by
Searching for
profile.php text from
Wordpad or
Notepad..
Code to be added :
[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false] $avatarimage = dbresult(dbquery("SELECT user_avatar FROM ".DB_USERS." WHERE user_id='".$user_id."'"
,0);
if ($avatarimage && file_exists(IMAGES."avatars/".$avatarimage))
{
$onmouseover = 'showhoveravatar("'.IMAGES.'avatars/'.$avatarimage.'"
';
}
else
{
$onmouseover = 'showhoveravatar("'.IMAGES.'noav.png"
';
}
$onmouseout = 'hideddrivetip()';[/syntaxhighlighter]
Modification required :
From :
[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]<a href='profile.php?lookup=".$data['user_id']."'>[/syntaxhighlighter]
Change to :
[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]<a href='profile.php?lookup=".$data['user_id']."' onmouseover='".$onmouseover."' onmouseout='".$onmouseout."'>[/syntaxhighlighter]
Hope this will work for you