The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
is there a mod that for signatures by usergroup
ive looked and searched and cant find anything. seems like i remember seeing it before.
what i would like to do is have usergroup signatures i.e. a paying member = gold = shiny gold logo in that usergroups signature. |
#2
|
||||
|
||||
You could do this via a plug-in, iv not seen anything to do this before.
Try requesting it here; https://vborg.vbsupport.ru/forumdisplay.php?f=112. Or, if you are willing to pay, here; https://vborg.vbsupport.ru/forumdisplay.php?f=30. |
#3
|
|||
|
|||
ive seen one site with it, but it seems like i could write some conditionals for usergroups in the postbit template.
|
#4
|
||||
|
||||
Just do some usergroup conditionals.
Code:
<if condition="is_member_of($vbulletin->userinfo, 6)"> USERGROUP 6 <else /> <if condition="is_member_of($vbulletin->userinfo, 4)"> USERGROUP 4 </if> </if> |
#5
|
||||
|
||||
I guess thats one way, I find it awkward when you change styles etc
|
#6
|
|||
|
|||
Quote:
then i tried inserting something below the signature. |
#7
|
||||
|
||||
It should be $post not $vbulletin->userinfo.
|
#8
|
||||
|
||||
Whoops, sorry about that .
Code:
<if condition="is_member_of($post, 6)"> USERGROUP 6 <else /> <if condition="is_member_of($post, 4)"> USERGROUP 4 </if> </if> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|