View Full Version : Mini Mods - Default avatar
Allan
12-13-2009, 10:00 PM
This mod add a default avatar, simply ^^
In "postbit" template, find:<vb:if condition="$show['avatar']">
<a class="postuseravatarlink" href="{vb:link member, {vb:raw post}}">
<vb:if condition="$post.avatarurl">
<img src="{vb:raw post.avatarurl}" alt="{vb:rawphrase xs_avatar, {vb:raw post.username}}" />
<vb:else />
<img src="{vb:stylevar imgdir_misc}/unknown.gif" />
</vb:if>
</a>
</vb:if>
Replace to:<vb:if condition="$show['avatar']">
<a class="postuseravatarlink" href="{vb:link member, {vb:raw post}}">
<vb:if condition="$post.avatarurl">
<img src="{vb:raw post.avatarurl}" alt="{vb:rawphrase xs_avatar, {vb:raw post.username}}" />
</vb:if>
</a>
<vb:else />
<img class="postuseravatarlink" align="left" src="{vb:stylevar imgdir_misc}/avatar.png" alt="{vb:rawphrase xs_avatar, {vb:raw post.username}}" />
</vb:if> PS: The IB code is no good by default, default avatar is expected but does not
PS2: image (avatar.png) is already included
fourat
12-15-2009, 01:34 AM
Thank you Allan
interfx
12-15-2009, 08:20 PM
Is there a way to make a default avatar for unregistered users?
Allan
12-15-2009, 09:27 PM
Is there a way to make a default avatar for unregistered users?
PS2: image (avatar.png) is already included
http://www.vbulletin.com/forum/images/misc/avatar.png
interfx
12-15-2009, 09:38 PM
Sorry, let me more clear... I'm looking for a solution to have unregistered users have a unqiue avatar... The default avatar (PS2) would still be there for registered users, but wanted an unique avatar for unregistered users...
Would your solution work for somehting like that?
taffy056
12-15-2009, 10:55 PM
There is a product that does this also, perhaps that could help you interfx
Dr.osamA
12-18-2009, 07:41 PM
thanx man !!
________
MONTANA MARIJUANA DISPENSARY (http://montana.dispensaries.org/)
SİMAR
12-21-2009, 05:12 PM
thanx
tazattitude
12-24-2009, 03:03 PM
Thanks Allan!
GrossKopf
12-28-2009, 07:59 PM
How is this different from the option in the Admin CP that lets you set a default avatar?
Brother Malachi
01-01-2010, 08:30 AM
Hey Allan, I'm a bit confused.
Doesn't $show[avatar] check to see whether the user has chosen to display or hide avatars through his/her userCP?
Meaning, if I were to go to my userCP and uncheck the "Show Avatars" then your code kicks in showing the default blank one.
Is that the purpose of your code?
Or are you trying to make it so that if a user does not have an avatar, the default one is shown?
Sorry, let me more clear... I'm looking for a solution to have unregistered users have a unqiue avatar... The default avatar (PS2) would still be there for registered users, but wanted an unique avatar for unregistered users...
Would your solution work for somehting like that?
Use this:
<vb:if condition="$show['guest']"></vb:if>
shahz
11-03-2010, 06:25 PM
Thanks for the bit bro, but I would like to fix the code just a little bit more to make it perfect. Currently, the default avatars are not linking to the profile. Use this one instead:
<vb:if condition="$show['avatar']">
<a class="postuseravatarlink" href="{vb:link member, {vb:raw post}}">
<vb:if condition="$post.avatarurl">
<img src="{vb:raw post.avatarurl}" alt="{vb:rawphrase xs_avatar, {vb:raw post.username}}" />
</vb:if>
</a>
<vb:else />
<img class="postuseravatarlink" align="left" src="{vb:stylevar imgdir_misc}/avatar.png" alt="{vb:rawphrase xs_avatar, {vb:raw post.username}}" />
</vb:if>
LordMike
11-13-2010, 05:11 AM
^^ that's the difference between amateur tweaking and the real pro's.
Thanks for the insight, I've only changed the .gif to .png so I'm not sure, but I think everything will stay the same as it was? Doesn't vB takes care of this ? (I mean to check if the avatars is on/off in usercp)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.