Log in

View Full Version : Avatar thumbnails in showgroups?


Boofo
02-07-2008, 02:39 AM
Can anyone please help with pulling the avatar thumbnails into showgroups? I almost have it but I can't quite get it yet. I know it has to do with the fetch_avatar_url function but I can't seem to get it to work in showgroups. Any help will be greatly appreciated. ;)

Sofia
02-20-2008, 10:16 PM
Hi Boofo

You can try my hack : http://www.vbhackers.com/f76/avatars-view-forum-leaders-8301/#post57533
Works on 3.6.8


Try this 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>

Boofo
02-20-2008, 10:36 PM
Hi Boofo

You can try my hack : http://www.vbhackers.com/f76/avatars-view-forum-leaders-8301/#post57533
Works on 3.6.8


Try this 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:

<img style="margin: 15px;" src="$avatarurl" alt="$user[username]'s Avatar" border="0" />

I also tried:


<img style="margin: 15px;" src="$avatarurl[userid]" alt="$user[username]'s Avatar" border="0" />

Sofia
02-20-2008, 11:06 PM
Works good on 3.7.0 Beta 5 :p

Try this code :

<img style="margin: 15px;" src="$avatarurl[0]" alt="$user[username]'s Avatar" border="0" />

Boofo
02-20-2008, 11:18 PM
You are an angel! It works. But one slight problem. The Super Mod Avatar is showing up as the Mod Avatar and they are 2 different people.

Is there a way to pull the thumbs out for this?

johnrizz
04-10-2008, 10:21 PM
Here is my SHOWGROUPS could someone tell whats wrong with this, maybe help fix this? Thanks!




$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<title>$vboptions[bbtitle] - $vbphrase[show_groups]</title>
</head>
<body>
$header
$navbar

<if condition="$moderatorbits">
<!-- moderators -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" colspan="5">$vbphrase[moderators]</td>
</tr>
<tr>
<td class="thead">&nbsp;</td>
<td class="thead" width="25%">$vbphrase[username]<if condition="$show['locationfield']"> / $vbphrase[location_perm]</if></td>
<td class="thead" width="25%">$vbphrase[forums]</td>
<td class="thead">$vbphrase[contact]</td>
</tr>
$moderatorbits
</table>
<br />
<!-- end moderators -->
</if>

$usergroups

<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td width="100%">&nbsp;</td>
<td>$forumjump</td>
</tr>
</table>

$footer
</body>
</html>

squishi
04-10-2009, 08:45 AM
Having the same problem as stone0075.
The last avatar on the page is being repeated for all the moderators.