PDA

View Full Version : Avatar on all pages


Forum-Germany
03-24-2011, 04:17 PM
Hello.

I search a with which I Avatare on every page in the forum can use.

Herewith it goes:

Plugin: global_start

require_once('./includes/functions_user.php');
$user_ava = fetch_avatar_url($vbulletin->userinfo['userid']);


Template:

<a href="profile.php?$session[sessionurl]do=editavatar"><img src="$user_ava[0]" alt="$bbuserinfo[username]" border="0" /></a>


But I would want this if the user NO avatar has, spare graphics are indicated.

Can somebody help me please in it?

Many thanks.

vBulletin 3.8.X

BirdOPrey5
03-26-2011, 02:12 AM
Just put a conditional in your plugin, if $user_ava[0] is empty, put a URL in for an image showing "no avatar" or whatever default image you want:


require_once('./includes/functions_user.php');
$user_ava = fetch_avatar_url($vbulletin->userinfo['userid']);

if ($user_ava[0] == "")
$user_ava[0] = "http://www.yourdomain.com/images/noavatar.gif";

Tyran1
01-22-2013, 08:42 PM
Und für verschiedene Usergroups???

Ist das auch möglich???

And for different user groups?Is this even possible???