Hello,
I'm trying to do this:
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:
Code:
<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.