MyBB Community Forums

Full Version: Put User Avatar in index and Default avatar for guest?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi there. Im looking for solutions on my problem but I cant find anything.

Please help me... Im building a forum and I want to add the avatar users in the index page.

I want to see users avatar when login and when logout or guest, you can see the default avatar.

Ive seen some codes like <img src="{$mybb->user['avatar']}" alt="Avatar" width="50px"; height="50px" />...

the problem on that code is that when a guest browse your forum, you'll see a blank square...

help please. thank you...
+ Install & active: http://mybbhacks.zingaburga.com/showthread.php?tid=260

<if $mybb->user['usergroup'] != 1 then>
<img src="{$mybb->user['avatar']}" alt="Avatar" width="50px"; height="50px" />
<else>
<img src="http://yourlinkimages.png" alt="Avatar" width="50px"; height="50px"/>
</if>
thanks for the help