PDA

View Full Version : Show avatar on header


Kanustep
04-07-2008, 10:19 PM
Hello,

I'm trying to do this:

http://img217.imageshack.us/img217/2351/79776888co0.gif

So when the user is logged in, he will see his avatar, when the user is not logged, it will show a default one.

This is the code I made:

<if condition="is_member_of($bbuserinfo, 1, 3)">
<if condition="$show['avatar']">
<a href="member.php?$session[sessionurl]u=$post[userid]">
<img src="$post[avatarurl]" alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" width="48" height="48" border="0" /></a>
</if>
</else>
<img src="defaultavatar.gif" alt="Avatar" width="48" height="48" border="0" />
</if>

No avatar is being showed and even the default one. What I'm missing?

Thank you for your help in advance.

MoT3rror
04-08-2008, 12:37 AM
<if condition="!is_member_of($bbuserinfo, 1, 3)">
<if condition="$show['avatar']">
<a href="member.php?$session[sessionurl]u=$post[userid]">
<img src="$post[avatarurl]" alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" width="48" height="48" border="0" /></a>
</if>
</else>
<img src="defaultavatar.gif" alt="Avatar" width="48" height="48" border="0" />
</if>

GameWizard
04-08-2008, 03:22 PM
I think it would better to use this:

<if condition="$show['member'] AND $show['avatar']">
<a href="member.php?$session[sessionurl]u=$post[userid]">
<img src="$post[avatarurl]" alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" width="48" height="48" border="0" /></a>
<else />
<img src="defaultavatar.gif" alt="Avatar" width="48" height="48" border="0" />
</if>Firstly the $show['member'] will apply to all members, regardless of usergroup, and then the <else /> will only apply to guests.

Btw, make sure you use <else /> and not</else>

Kanustep
04-08-2008, 05:47 PM
Thank you,
I try it both and keep showing to me the code after <else />, I'm trying it has an administrator and has a register user, however in both I can't see my avatar.

Both of users have avatar...This is the code:

<div style="float: left; width: 50px; margin: 6px;">
<if condition="$show['member'] AND $show['avatar']">
<a href="member.php?$session[sessionurl]u=$post[userid]">133
<img src="$post[avatarurl]" alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" width="48" height="48" border="0" /></a>
<else />
789<img src="$stylevar[imgdir_misc]/defaultavatar.gif" alt="Avatar" width="48" height="48" border="0" />
</if> </div>

This is the older one I was using:

<if condition="!is_member_of($bbuserinfo, 1, 3)">
<img src="$stylevar[imgdir_misc]/defaultavatar.gif" alt="Avatar" width="48" height="48" border="0" />
<else />
<if condition="$show['avatar']">avatar <a href="member.php?$session[sessionurl]u=$post[userid]"> <img src="$post[avatarurl]" alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]
</phrase>
" width="48" height="48" border="0" /></a>
</if>
</if>

(I put numbers o the code to distinguish and if the code is correct)

What I'm doing wrong?

Thank you both!

--------------- Added 1207684906 at 1207684906 ---------------

Hello, I have a update:


<if condition="!is_member_of($bbuserinfo, 1, 3)">
<a href="member.php?$session[sessionurl]u=$bbuserinfo[userid]"><img src="$prepared[avatarurl]" alt="<phrase 1="$bbuserinfo[username]">$bbuserinfo[username]</phrase>" width="48" height="48" border="0" /></a>
<else />
<img src="$stylevar[imgdir_misc]/defaultavatar.gif" alt="Avatar" width="48" height="48" border="0" />
</if>

It work everything except the image avatar :p

MarkJW
04-10-2008, 05:25 PM
I'm having the same problem with the code, with the image not working through the code is correct. I've narrowed it down to this:

$prepared[avatarurl]


That just doesn't want to work in header template. Anyone know why? Anyone know a workaround? Pretty please?

Kanustep
04-10-2008, 06:11 PM
Hello MarkJW,

I found a way to work:

<if condition="!is_member_of($bbuserinfo, 1, 3)">
<a href="member.php?$session[sessionurl]u=$bbuserinfo[userid]"><img src="$navbar_ava[0]" alt="<phrase 1="$bbuserinfo[username]">$bbuserinfo[username]</phrase>" width="48" height="48" border="0" /></a>
<else />
<img src="$stylevar[imgdir_misc]/defaultavatar.gif" alt="Avatar" width="48" height="48" border="0" />
</if>

This code work, but need to be install a plug-in:
https://vborg.vbsupport.ru/showthread.php?t=83053

If you do this it will show the avatar in your header.

Hope it helps you!

MarkJW
04-10-2008, 10:04 PM
Oh wow, thanks!

Edit: this is the conditional I used and it's working very well for me. Thanks guys!

<if condition="$bbuserinfo[userid]">
<a href="member.php?$session[sessionurl]u=$bbuserinfo[userid]"><img src="$navbar_ava[0]" alt="<phrase 1="$bbuserinfo[username]">$bbuserinfo[username]</phrase>" width="48" height="48" border="0" /></a>
<else />
<img src="$stylevar[imgdir_misc]/unknown.gif" alt="Avatar" width="48" height="48" border="0" />
</if>

Kanustep
04-11-2008, 03:14 AM
You're welcome, tell me what you want to do? The variable you use isn't correct, if you are trying to only show the avatar to the register members, use the suggestion given by GameWizard (https://vborg.vbsupport.ru/member.php?u=54494):

<if condition="$show['member'] AND $show['avatar']"></if>