PDA

View Full Version : Mod Help


pein87
01-06-2009, 06:01 PM
Hi I`m stuck on a mod and I was wondering if someone with more coding skills then me with vbulletin wold be willing to lend a hand. I got gyped by FRDS how was supposed to be doing this for me. I and trying to make a mod that shows each users avatar in a side colum with out additional queries beeing ran. Dismounted said to add define(AVATAR_ON_NAVBAR, 1); in the config.php file which made it work for some code i found here but it made it so you couldnt change it everytime the user made a new avatar. I tried my hand at it and I cant figure out where to pull the info from. I tried the function Dismounted told me and added all the right fields but its didnt show anything. My code is this (bar in mind its very simple)
<if condition="$show['member']">
<img src="$bbuserinfo['avatarurl']" alt="$bbuserinfo['username']` Avatar" height="64" width="64" />
<else />
</if>
<if condition="$show['guest']">
<img src="images/misc/guest.png" alt="guest avatar" height="64" width="64" />
</if>


Its nothing to detailed but if you switch the img source in the show members if conditional with another code like the $prepared['avatarurl'] it will show it on the users page can someone help me find a fix for this please?

Dismounted
01-07-2009, 04:14 AM
And the PHP code you are running is?

pein87
01-07-2009, 04:52 PM
I tried using this:

require_once(DIR . '/includes/functions_user.php');
fetch_avatar_from_userinfo($user, true, true);
but it only shows a link to the avatar. Can you help me out with this it seems Im not pulling any data from this function. or maybe i`m using the function wrong any way if you coul help me out i would appreciate it.

Dismounted
01-08-2009, 02:16 AM
// we need this
require_once(DIR . '/includes/functions_user.php');

// now we fetch it (url will be stored in $vbulletin->userinfo['avatarurl'])
fetch_avatar_from_userinfo($vbulletin->userinfo, false, true);

// make avatar size
$vbulletin->userinfo['avatarsize'] = ($vbulletin->userinfo['avatarwidth'] ? ' width="' . $vbulletin->userinfo['avatarwidth'] . '"' : '') . ($vbulletin->userinfo['avatarheight'] ? ' height="' . $vbulletin->userinfo['avatarheight']. '"' : '');