The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
[release] Kousetsu welcome panel (includes hackless avatar on homepage!) Details »» | |||||||||||||||||||||||||||
[release] Kousetsu welcome panel (includes hackless avatar on homepage!)
Developer Last Online: Nov 2023
Kousetsu Welcome Panel
|- because every hacker needs to release at least one . This modification adds a new table to your index.php, its ment to welcome the user/guest and make everything look neater on forumhome. Check out the Screenshots in the next two post for a preview or view Kousetsu This modification also includes a hackless verson of fireflys Avatar on homepage hack. Ive used this on 2.2.5 rc - 2.2.9 final with no problems, all install docs and images in zip. If you use this please click the Install button in this thread, thank you. Add-on's: since your last visit XX posts and XX threads - By Anime-loo Show Your Support
|
Comments |
#2
|
|||
|
|||
Screenshot of welcome panel when user is logged out/guest hits index.php
|
#3
|
|||
|
|||
When user logged in they see this:
|
#4
|
||||
|
||||
i like it, i`ll have to try it out
|
#5
|
|||
|
|||
I'm shocked, AL! After that discussion there's still no [release] or header in the post!
Looks nice |
#6
|
|||
|
|||
I was just about to add that myself, cooking and posting a modification at the same time makes you forget some things .
|
#7
|
|||
|
|||
*crash* Agh! I got boiling water on the keyboard again! *fire sounds*
|
#8
|
|||
|
|||
Add-on: since your last visit XX posts and XX threads
This modification will add the amount of new post/threads in the welcome panel. Be aware this adds 2 queries to index.php and they are processer intensive. Ive released this modification in stand alone format here. Install doc: (welcome panel must be installed frist) --------------------------------------- Open the phpinclude template --------------------------------------- ## find if (strpos($_SERVER['PHP_SELF'], 'index.php') != false) { if ($bbuserinfo[userid]!=0) { $avatarurl=getavatarurl($bbuserinfo[userid]); if ($avatarurl=='') { $avatarurl='images/noavatar.gif'; } $avatarimage='<img src="'.$avatarurl.'">'; } else { $avatarimage='<a href="register.php?s='.$session[sessionhash].'&action=signup"><img src="images/guestavatar.gif"></a>'; } } ## Replace with: if (strpos($_SERVER['PHP_SELF'], 'index.php') != false) { if ($bbuserinfo[userid]!=0) { $avatarurl=getavatarurl($bbuserinfo[userid]); if ($avatarurl=='') { $avatarurl='images/noavatar.gif'; } $avatarimage='<img src="'.$avatarurl.'">'; } else { $avatarimage='<a href="register.php?s='.$session[sessionhash].'&action=signup"><img src="images/guestavatar.gif"></a>'; } // Start new threads/posts $loonewthread=$DB_site->query_first("SELECT COUNT(*) AS threads FROM thread WHERE lastpost > '$bbuserinfo[lastvisit]'"); $loonewpost=$DB_site->query_first("SELECT count(*) AS posts FROM post WHERE dateline > '$bbuserinfo[lastvisit]'"); } --------------------------------------------------- Open template forumhome_welcometext --------------------------------------------------- ## Find: You last visited: $bbuserinfo[lastvisitdate].<br> ## Replace with: You last visited: $bbuserinfo[lastvisitdate].<br />There have been <b>$loonewthread[threads]</b> threads and <b>$loonewpost[posts]</b> posts since your last visit!<br /> //////// add-on installed /////// Screenshot |
#9
|
||||
|
||||
Nice, I'll create an add-on for it soon.
|
#10
|
||||
|
||||
They since last visit add-on is nice. Too bad it requires a nasty index on the dateline field to be usable on large forums. I added this to SitePoint and the query for this alone added two seconds to the processing time.
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|