MyBB Community Forums

Full Version: Avatar Variable
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What is the variable to display your avatar on a custom MyBB index page.

I tried
{$mybb->user['avatar']}
and it comes up as if the image doesn't exist.
You need to wrap that within an img tag. Like so:

<img src="{$mybb->user['avatar']}" />

You can even add alternate text and a tooltip:

<img src="{$mybb->user['avatar']}" alt="{$mybb->user['username']}'s avatar" title="{$mybb->user['username']}'s avatar" />