PDA

View Full Version : Mini Mods - Default avatar for users with no selected avatar


Danny702
07-03-2011, 10:00 PM
Just some help if you want to set the default avatar to users who did not select any avatar. It is for postbit, postbit_legacy and member list template.

In your postbit template find -

<if condition="$show['avatar']"><td class="alt2"><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></td></if>

and put this below code before </if> -

<else />
<if condition="$bbuserinfo[showavatars]">
<td class="alt2"><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$stylevar[imgdir_misc]/noavatar.gif" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a><br /><a href="profile.php?$session[sessionurl]do=editavatar"><b>Set Avatar</b></a></td>
</if>
</if>

upload(copy) image noavatar.gif in "your template" /images/misc folder.

In your templete memberlist_resultbits find this:
<if condition="$show['avatar']"><img src="$avatarurl" border="0" $avwidth $avheight alt="<phrase 1="$userinfo[username]">$vbphrase[xs_avatar]</phrase>" hspace="4" vspace="4" /><else />&nbsp;</if></td></if>

and &nbsp; replace with this

<img src="$stylevar[imgdir_misc]/noavatar.gif" border="0" $avwidth $avheight alt="<phrase 1="$userinfo[username]">$vbphrase[xs_avatar]</phrase>" hspace="4" vspace="4" />

For postbit_legacy find

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

and after </div> add this

<else />
<if condition="$bbuserinfo[showavatars]">
<div class="smallfont">
&nbsp;<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="your url link/noavatar.gif" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
</div>


Change "your url link" to your link to picture (avatar)!

You can make your own pictures (avatar) for users who did not select any avatar!
Thanks

Reycer
07-04-2011, 03:25 AM
This oddly looks familiar....lol

https://vborg.vbsupport.ru/showthread.php?t=207517&highlight=Default+avatar

Manoel J?nior
07-04-2011, 12:04 PM
See:

https://vborg.vbsupport.ru/showthread.php?t=265828