View Full Version : is there a mod that for signatures by usergroup
patrickstar
07-13-2007, 01:40 PM
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.
Distance
07-13-2007, 02:38 PM
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.
patrickstar
07-13-2007, 04:33 PM
ive seen one site with it, but it seems like i could write some conditionals for usergroups in the postbit template.
Dismounted
07-14-2007, 05:53 AM
Just do some usergroup conditionals.
<if condition="is_member_of($vbulletin->userinfo, 6)">
USERGROUP 6
<else />
<if condition="is_member_of($vbulletin->userinfo, 4)">
USERGROUP 4
</if>
</if>
Distance
07-14-2007, 02:11 PM
I guess thats one way, I find it awkward when you change styles etc
patrickstar
07-15-2007, 03:37 PM
Just do some usergroup conditionals.
<if condition="is_member_of($vbulletin->userinfo, 6)">
USERGROUP 6
<else />
<if condition="is_member_of($vbulletin->userinfo, 4)">
USERGROUP 4
</if>
</if>
tried that and not working, for example in the postbit legacy template i used it to insert something to the right of the 'report bad post' icon.
then i tried inserting something below the signature.
Kirk Y
07-15-2007, 03:54 PM
It should be $post not $vbulletin->userinfo.
Dismounted
07-16-2007, 04:52 AM
Whoops, sorry about that :).
<if condition="is_member_of($post, 6)">
USERGROUP 6
<else />
<if condition="is_member_of($post, 4)">
USERGROUP 4
</if>
</if>
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.