Status
Not open for further replies.

Zero

Active Member
639
2008
58
0
I was wondering if there was a mod that, would would give all user a defult avatar? Like one i design. Is that possible? If so can i have a download link please?

Thank you
 
8 comments
well im not sure you can make request here as its not a warez forum
however if you find what you want from vbulletin.org ill be sure to help you out
 
Template edit if you want - This is how I do mine.

Change in postbit / legacy

Code:
<if condition="$show['avatar']">
<div class="smallfont">
&nbsp;<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
</div>
</if>

To

Code:
<div class="smallfont">&nbsp;<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="<if condition="$show['avatar']">$post[avatarurl]<else />[COLOR=Red]images/avatars/defaultavatar.png[/COLOR]</if>" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a></div>
 
Status
Not open for further replies.
Back
Top