View Full Version : Multiple Icons/Awards for Members
I have been using the rank system to give icons (instead of rank title test) to users based on post count and user groups.
I want to expand this to where a user can have multiple icons/awards show in his profile and postbit.
For Example If I have an icon/award for 1-quality poster, 2- Master Debator, 3 - Moderator, I want to be able to display all of these icons.
thx in advance.
ericgtr
12-15-2004, 01:56 PM
I would dig around and see if someone has worked with conditionals and ranks, I wouldn't doubt it's been done somwhere. As an alternative you could use promotions and usergrops to accomplish this. For example, say you want the user to have image1.gif at 500 posts and an additional image2.gif at 1000 you could do it by setting up groups.
Setup a group for image1.gif (add as many groups as you want)
Setup a promotion for the user to be added to this group with a certain post count.
In your postbit (and optionally memberinfo) you would add something like this for a condition: (I put mine under the avatar)
<if condition="is_member_of($post, 48)"> <a href="vb/subscriptions.php"><img src="/vb/images/ranks/plat.gif" alt="Platinum Member" border="0" /></a>
</if>
$post48 being the group number
Optionally, you can add as many as you want this way :)
Joe Black
01-11-2005, 12:12 AM
I would dig around and see if someone has worked with conditionals and ranks, I wouldn't doubt it's been done somwhere. As an alternative you could use promotions and usergrops to accomplish this. For example, say you want the user to have image1.gif at 500 posts and an additional image2.gif at 1000 you could do it by setting up groups.
Setup a group for image1.gif (add as many groups as you want)
Setup a promotion for the user to be added to this group with a certain post count.
In your postbit (and optionally memberinfo) you would add something like this for a condition: (I put mine under the avatar)
<if condition="is_member_of($post, 48)"> <a href="vb/subscriptions.php"><img src="/vb/images/ranks/plat.gif" alt="Platinum Member" border="0" /></a>
</if>
$post48 being the group number
Optionally, you can add as many as you want this way :)
Thank you! This is exactly what I was looking for as well to identify my contributing members.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.