Log in

View Full Version : Member's Group in Post-Bit(legacy)


Developer
01-26-2006, 10:00 PM
Description:
this is a simple modification that show every member's group in his post
installation:
open Post-Bit(legacy) and find <div>
$vbphrase[posts]: $post[posts]
</div>
then add below it
<if condition="is_member_of($post,1)">Member's Group:Guests</if>
<if condition="is_member_of($post,2)">Member's Group:Members</if>
<if condition="is_member_of($post,3)">Member's Group:Users Awaiting Email Confirmation</if>
<if condition="is_member_of($post,4)">Member's Group:(COPPA) Awaiting Moderation</if>
<if condition="is_member_of($post,5)">Member's Group:Super Moderators</if>
<if condition="is_member_of($post,6)">Member's Group:Administrators</if>
<if condition="is_member_of($post,7)">Member's Group:Moderators</if>
<if condition="is_member_of($post,8)">Member's Group:Banned</if>
Donation::.
Feel Free To https://vborg.vbsupport.ru/external/2010/09/1.gif (https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=filmahosting%40gmail%2ecom&item_name=DEVELOPER&item_number=1&no_shipping=0&no_note=1&tax=0&currency_code=USD&bn=PP%2dDonationsBF&charset=UTF%2d8)
aT lAsT:
click Install (https://vborg.vbsupport.ru/vborg_miscactions.php?do=installhack&threadid=106485)

ProjectTR
01-27-2006, 07:25 PM
thanks :) I will add phrase for another language

Cyricx
01-27-2006, 07:47 PM
A better way then a bajillion <if> statements would prolly be using the rank system. You can make a rank for each usergroup.

Just an alternate idea :)

Yorixz
01-28-2006, 06:35 AM
You could also simply use this: <div class="userinfo"><b>$vbphrase[usergroup]:</b> $post[displaygrouptitle]</div> - it uses the title of a usergroup so it basically shows the same but doesn't use <if>'s ;)

Snake
01-28-2006, 12:22 PM
Yep I've already figured that for my forums. ;)

Developer
01-28-2006, 12:32 PM
it is just a way from many ways

amadergaan
01-30-2006, 11:08 PM
Yorixz,

exactly where do i put the code...below this?

<div>
$vbphrase[posts]: $post[posts]
</div>

Developer
02-02-2006, 02:24 AM
yes.

Akagi
02-04-2006, 03:44 PM
is it possible to display the membergroup as well?
something like this thread:

https://vborg.vbsupport.ru/showthread.php?t=61305&page=2&pp=15

BabyNameAddict
03-10-2006, 04:17 AM
You could also simply use this: <div class="userinfo"><b>$vbphrase[usergroup]:</b> $post[displaygrouptitle]</div> - it uses the title of a usergroup so it basically shows the same but doesn't use <if>'s ;)

Excellent :banana:

LVGgebruiker
01-23-2011, 10:10 AM
Will you ever update this mod to the new v4.x? I hope so.