Log in

View Full Version : Avatar on left side navbar?


raiderlax
08-13-2007, 03:20 AM
Hello I have asked this before and have not still not found the way to get the avatar to be put in the navbar, beside the welcome info, please see the attached pic.

I really need to do this and I know you guys know how, please some help :)

Dismounted
08-13-2007, 06:08 AM
Did you use my avatar code I posted on the forums once? I would find it for you, but I'm a bit short of time.

raiderlax
08-14-2007, 03:23 AM
Did you use my avatar code I posted on the forums once? I would find it for you, but I'm a bit short of time.

Sorry dismounted I have been looking through your posts and cannot find the avatar code that you have posted.

When you have time it would be very appreciated if you could help me with this.

Thank you.

Dismounted
08-14-2007, 10:51 AM
// include backend
require_once('./global.php');
require_once(DIR . '/includes/functions_user.php');

// setup avatar if exists
$avatar = fetch_avatar_url($vbulletin->userinfo['userid']);
if ($avatar != '' AND $vbulletin->options['avatarenabled'])
{
$avatarurl = $avatar[0];
}

raiderlax
08-14-2007, 02:44 PM
Thank you so much Dismounted, now I'm sorry to ask this, but where do that code go?

raiderlax
08-16-2007, 06:07 AM
Thank you so much Dismounted, now I'm sorry to ask this, but where do that code go?

bump, sorry i need to know where to put this :)

Dismounted
08-16-2007, 07:04 AM
In a plugin. $avataurl will contain the URL, so just use a normal image tag.

raiderlax
08-16-2007, 04:56 PM
Thanks Dismounted, so I put that code in as a plugin, than I put $avataurl in the navbar where I want to display the avatar???

Also with the plugin, what hook location do I put it?

Thanks so much?

Also how would I have like a default avatar their, just an image like I in vBadvanced, that says "No avatar" and when they click it it brings them to the avatar options?

Dismounted
08-17-2007, 11:06 AM
Hook Location: global_start

As I said before, $avatarurl only contains the URL (as per the variable name). You will have to code the image tag.

Analogpoint
08-18-2007, 04:36 AM
As dismounted says, put <a href="$avatarurl" alt="" /> in the navbar template.

Dismounted
08-18-2007, 04:53 AM
You're wrong, that's a hyperlink, not an image...
<img src="$avatarurl" alt="Your Avatar" border="0" />