Quote:
Originally Posted by Sofia
Hi Boofo
You can try my hack : http://www.vbhackers.com/f76/avatars...301/#post57533
Works on 3.6.8
Try this code :
HTML Code:
<plugins>
<plugin active="1" executionorder="5">
<title><![CDATA[Display avatar]]></title>
<hookname>showgroups_user</hookname>
<phpcode><![CDATA[require_once('./includes/functions_user.php');
$userid = $user['userid'];
$avatarurl = fetch_avatar_url($userid);]]></phpcode>
</plugin>
</plugins>
|
I'm using 3.7.0 beta 5. Here's the line I used in the template and nothing is showing:
HTML Code:
<img style="margin: 15px;" src="$avatarurl" alt="$user[username]'s Avatar" border="0" />
I also tried:
HTML Code:
<img style="margin: 15px;" src="$avatarurl[userid]" alt="$user[username]'s Avatar" border="0" />