View Full Version : [SOVED]Banned Group Avatar ( modification based on groupid ) 3.8.x
danyxxx
09-09-2011, 08:50 AM
Hello,
I need a modification that will put a single image to all users that are banned maybe the modification can be made for the usergroupd id .. or something like that ( 3.8.x ) .
Kind Regards !
BirdOPrey5
09-09-2011, 03:25 PM
You could make a plugin in Plugin Manager-> Add A New Plugin
hook: postbit_display_complete
Give it a name, leave execution order as 5.
php code:
if (is_member_of($vbulletin->userinfo, 8))
{
$this->post['avatarurl'] = "/forums/images/misc/noavatar.gif";
$this->post['avwidth'] = 'width="120"';
$this->post['avheight'] = 'height="120"';
}
Assuming 8 is your banned usergroup... Change the file name to the avatar and height and width to your needs.
danyxxx
09-09-2011, 03:29 PM
ok, thanks a lot, I will try that :D
danyxxx
09-13-2011, 06:42 AM
Hei... doesn't work man :(
BirdOPrey5
09-13-2011, 10:59 AM
Hei... doesn't work man :(
Did you set the plugin as Active? Does anything happen at all?
danyxxx
09-14-2011, 07:18 AM
Yes ...
But I use another modification for the users with no avatar .. maybe because that?
BirdOPrey5
09-14-2011, 12:34 PM
Possible... try changing the execution order from 5 to 8.... if nothing change it from 8 to 2, see if either helps.
danyxxx
09-14-2011, 01:10 PM
aaa , I will try this , I return with reply
--------------- Added 1316009592 at 1316009592 ---------------
Nothing happens.. I try with 2, 8, 1, 10 ... doesn't work .
I have this modification:
<if condition="$bbuserinfo[showavatars]">
<div class="smallfont">
<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="/forum/images/noavatar.png" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
</div>
</if>
I need the condition for usergroupid :D :p
I try this way -->
<if condition="$bbuserinfo[showavatars]">
<if condition="is_member_of($bbuserinfo, array(123))">
<div class="smallfont">
<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="/forum/images/banned.png" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
</div>
</if>
</if>
An this way -->
<if condition="$bbuserinfo[showavatars]">
<if condition="$bbuserinfo['usergroupid'] ==123">
<div class="smallfont">
<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="/forum/images/banned.png" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
</div>
</if>
</if>
Before the:
<if condition="$bbuserinfo[showavatars]">
<div class="smallfont">
<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="/forum/images/noavatar.png" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
</div>
</if>
I try that inside the above code .. nothing happens :(
I try this way to -->
<if condition="$bbuserinfo[showavatars]">
<div class="smallfont">
<br /><if condition="is_member_of($bbuserinfo, array(123))"><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="/forum/images/banned.png" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a></if><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="/forum/images/noavatar.png" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
</div>
</if>
Doesn't work :(
BirdOPrey5
09-14-2011, 03:51 PM
I don't know what you are doing with:
<if condition="is_member_of($bbuserinfo, array(123))">
It would be;
<if condition="is_member_of($bbuserinfo, 1, 2, 3)">
If you wanted usergroups 1, 2, and 3.
Banned usergroup is usually 8.
danyxxx
09-14-2011, 03:53 PM
My banned groupid is 123 :)
But not that is the problem ...
--------------- Added 1316020189 at 1316020189 ---------------
Yuhuuuuu , I make the modification succesfully .
Was pretty simple, look :
I search in postbit_legacy for <if condition="$show['avatar']">
And I find:
<if condition="$show['avatar']">
<div class="smallfont">
<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>
The modification that must be added, is:
<if condition="$post[usergroupid] == 123">
<img src="/forum/images/banned.png" alt="" border="0" />
<else />
But, you must put this above the $show_avatar thing, and after the </if> of $show_avatar thing, you must put another </if> , LIKE THIS :
<if condition="$post[usergroupid] == 123">
<img src="/forum/images/banned.png" alt="" border="0" />
<else />
<if condition="$show['avatar']">
<div class="smallfont">
<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>
</if>
You can replace /forum/images/banned.png with your image url .
You can replace 123 with your banned groupid , usually 8 .
ENJOY ( for who's looking after this modification ) :p
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.