PDA

View Full Version : DEVELOPER Badge/Icon/Graphic in Signature (like on vB.org)


adwade
12-23-2010, 10:22 PM
A week or two ago, I tripped across a Modification that allowed an administrator to put a graphic file into (I think) the Signature section of certain users on their board. I can't recall if it was done by individual user ID or user group, but it was essentially the same as how vBulletin.org puts the DEVELOPER Graphic into the signature section of all the developers.(see attached graphic)

For whatever reason, I can't FIND it now on vBulletin.org. I thought I had TAGGED it, but not so. I've hunted for the past 3 days looking for it, searching for every term I can think of...all to no avail.

Could someone point me to which MOD this it on vBulletin.org??

MANY THANXX!

JamesC70
12-24-2010, 04:40 PM
I've hunted for the past 3 days looking for it, searching for every term I can think of...all to no avail.

Try "threadstarter". :)
https://vborg.vbsupport.ru/showthread.php?t=190362

adwade
12-25-2010, 01:53 AM
Thanxx for the Heads-Up James, I don't think I'd ever tripped across that MOD before. Looks interesting though, so will have to read about it some more.

The MOD I'm looking for would allow us to put a SUPPORTER Badge of some sort into the signature of the users who have donated to keep our website up & running. So I don't think that particular MOD will work for that purpose. I'm almost positive the MOD showed (or at least referred in the text to the) DEVELOPER Graphic just like they use here on vBulletin.org I thought I had 'Tagged' it for sure, but obviously not?! Geez, can anyone else help me in my quest to re-locate this MOD?

BirdOPrey5
12-26-2010, 12:50 AM
You can edit your template and before or after the signature add a conditional to display an image based on the usergroup of the poster...

in VB3 the condition would be:
<if condition="is_member_of($post, 9, 10, 11)">
<img src="images/misc/myimage.gif" border="0" />
</if>

That would show myimage.gif to any users part of usergroups 9, 10, or 11... you can add or remove more usergroups as needed.

In VB4 this should do the same thing:

<vb:if condition="is_member_of($post, 9, 10, 11)">
<img src="images/misc/myimage.gif" border="0" />
</vb:if>

adwade
12-26-2010, 03:45 AM
Many Thanxx for the suggestion! While I'm not a coder, you've given me enough to experiment with and see what I can fix up for our forums.

BirdOPrey5
12-26-2010, 03:48 AM
It would of course be the postbit or postbit_legacy template.

Good luck. :up:

adwade
12-26-2010, 07:06 AM
Your Good luck wish has been fulfilled! ha, ha I found where it fit best and it works PERFECTLY!