The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
I want to give my users something to look forward to besides custom titles, so I wanted to do the following:
On say 1000 postcount, make their username glow blue on 1500, green on 2000, red etc etc. I know I can't do this in templates, so whereabouts in the code would I toss the if statements to do so? |
#2
|
||||
|
||||
I don't know anything about making them glow...but you could give them a glowing usertitle.
admin/usertitle.php should give you some ideas for how to do usernames. |
#3
|
|||
|
|||
hmm... Yea, it does look like there's quite a bit of code to muck through in order to get every instance of a username to glow... I'll look into the title option, that seems like a viable thing
|
#4
|
|||
|
|||
hrm... where would be best to put this little string of if's I wrote out? This way I can just add $userinfo[specialtitle] in place of $userinfo[username] in the templates where I see fit:
PHP Code:
|
#5
|
|||
|
|||
You would probably want to place that code (without the <? ?>) within the getpostbit() function in admin/functions.php
|
#6
|
|||
|
|||
Just the answer I was looking for. Thanks! I'll post my success/dismay after I tinker with it.
|
#7
|
|||
|
|||
Ok, I've got a working example up, so I guess I'll post instructions for any other interested people.
In admin/functions.php: under ############## Start buildpostbit ############ Right after all the global defs for function getpostbit($post): Insert: PHP Code:
The colors I used are just for example, since I'm not entirely creative at the moment. |
#8
|
|||
|
|||
Ok, my users have requested a custom color gradient, and that's easily doable with some math and an extra function. The only other thing I need is a way to grab say $userinfo[field14] in the getpostbit function. Can I just use that? Or do I actually have to run some whack mysql query to grab the data based on $post[userid] ?
|
#9
|
|||
|
|||
guess not, unless it has a different name... oy...
Well, I tossed a script together, heres instructions for those of you that want it... Add a new user profile field, call it favorite color or something, and make sure they do it all lowecase, one word, no spaces, as per the html approved color list found on many an html help page. Take note of the field# of this field because you'll need to edit the script to use it. go to: http://www.dirgotronix.net/test/glow.phps save it on your server somewhere, I put glow.php in the forum directory. Change the require statement to point to your config.php, and change all instances of "field14" to whatever your favorite color field is. Change $colormultiplier to a different number based on your highest user posts. a multiplier of 25 means that the color will be at its brightest for a user with 2600 posts. This is good for my forum, but it probably isn't for yours. I'll end up working out some kind of check and averaging in a bit, but it took me all night to get where I am. right up from the bottom, there's an "if ( $glowposts < 500 )". This means that if the user has 0-499 posts, they don't get a glowing name. Change that as you see fit. Save the file. Now, open up your control panel and change your phpinclude to have "require("/var/www/forum/glow.php"); or wherever you put it. Next, edit admin/functions.php: search for: [QUOTE]global $showdeficon,$showonline,$displayemails,$enablepms ,$allowsignatures,$wordwrap,$dateformat,$timeforma t,$logip,$replacewords,$postsperday,$avatarenabled ,$registereddateformat,$viewattachedimages; |
#10
|
|||
|
|||
BTW, examples are on my forum, my announcement for it is here:
http://www.dirgotronix.net/forum/sho...?threadid=1317 |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|