The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
1 Year Hack
Is there any way to display some sort of award or something in the postbit for when a user has been regged with the boards for 1 Year?
|
#2
|
||||
|
||||
Why not add a promotion and set the days registered for 365 days in which the user gets added to a new group, say "one year". Then add a conditional to your postbit that says if they are part of that group, they get a special image under their avatar. Let me know if you need specifics and I will write it up for you.
|
#3
|
||||
|
||||
Yeah mate that would be superb if you could write summit like that for me. Mabye even release it on vbtemplates, cause seen it on a few old phpbb forums
|
#4
|
||||
|
||||
Okay, first create a user group called "one year" (no quotes)
Now, in your Admin CP > Usergroups > Promotions click Add Promotion. Usergroup: Registered Users Reputation Comparison Type: Greater or Equal to Less Than Reputation Level: 0 Days Registered: 365 Posts: 0 Promotion Strategy: Join Date Promotion Type: Additional Usergroups Move User to Usergroup: one year (Note: I have never used the above setup so I can't promise it's correct but it looks right, maybe somone who's worked with it can confirm for us) ---------------------------------------------------------- Now let's add a conditional for the new "one year" group so it will show up under their avatar, take not of this groups ID in the Usergroup Manager. In you postbit (or postbit legacy) find: Code:
<if condition="$show['avatar']"> <div class="smallfont"> <br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$avatarurl" alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a> </div> </if> Code:
<if condition="is_member_of($post, 6)"> insert your special image or text in here </if> |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|