The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Supporting member
I was reading this thread about how to get "supporting member" shown in postbit.
https://vborg.vbsupport.ru/showthrea...porting+member I have a vb3.60 board and basically want to get a similar thing going like shown below. http://www.martialartsplanet.com/for...75&postcount=7 In his postbit profile, there is a picture "Elite". I believe this can be done in the same way so I tried. my [supporting member] group ID is 60. In postbit, I added the code below <if condition="$post[usergroupid] == 60">Supporting Member</if> However, this didnt work... why? thanks. |
#2
|
|||
|
|||
In a conditional you need to have ' ' around "usergroupid." So use this:
Code:
<if condition="$post['usergroupid'] == 60">Supporting Member</if> |
#3
|
|||
|
|||
Gray Matter, thanks./ but it's still not showing.. you know why???
in postbit, I added the code after <div> <strong>$vbphrase[posts]:</strong> $post[posts] and "Supporting member" is not showing up.. |
#4
|
|||
|
|||
I suppose you could try this:
Code:
<if condition="is_member_of($post, 60)">Supporting Member</if> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|