MyBB Community Forums

Full Version: Get the url of a users avatar given their uid or username?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to get the avatar url of a user given either their uid or username? This will not necessarily be the logged in user.
You can get the avatar of a user using the below code :-
{$mybb->user['avatar']}

Regards
WallBB
(2017-01-10, 10:42 AM)WallBB Wrote: [ -> ]You can get the avatar of a user using the below code :-
{$mybb->user['avatar']}

Regards
WallBB
 That gets the avatar of the currently logged in user, how do I get the avatar of any user given either their username or uid?
$query = $db->simple_select("users", "avatar", "uid=$uid");
$avatarurl = $db->fetch_field($query, "avatar");

Note that avatars don't use a full path url when uploaded;, they use a relative path.