Description: vB Assistant is like a mini cpanel for your members, it small yet contains lots of information.
It will help you get to things much faster in a organized fashion. It will tell you all you need to know about your private messages, How many you have, how many in total, and show you the newest one in detail. It will show you the name of the person that sent it, the link directly to the PM (no hassle with going to inBox first), When you get a new PM within 24 hours It'll let you know with a flashing image and a "Received Today!" caption.
After the message ages (24 hours has past) it'll show the date instead. vB Assistant uses all your current forum settings, from date format, to forum title name.
vB Assistant will also let you know when a thread you started has a new reply which you haven't read. You will see a "View Replies" when someone posts in your thread. It will also tell you who the poster is, without even visiting the thread! It checks when was your last visit and determines if you read it or not. It wasn't easy since there isn't a "message unread" column in the database, so i managed to use the last login time.
vB Assistant has a mini quick search box, just type and hit enter.
When a user is not registered and he/she views vB Assistant, it will let them know what feature they have access to, and also tell them to register to get access to those features. (PM, cpanel links, etc...).
The buddie list is also available, clicking the username takes you to the PM window, clicking the red X will remove the buddie.
Each section in vB Assistant has a expandable/collapsible switch, If you do not want to see a part of it just click and it folds away with cool javascript affect
By having expandable/collapsible sections vB Assistant becomes even more compact and organized.
vB Assistant will also refresh every two minutes by default, it can be changed if wanted.
I see vB Assistant as a mini messenger that you can keep open (since it's small) while you browse the 'net
There is also a mini statistics section that will show you some information about how many registered members, users online, total post, etc...
Plus it will keep track of how many posts were made in the last 24 hrs.
Anyway, you get the idea.
Installation:
Very easy: Instructions are attached.
couple variables to edit, couple templates and your done.
Other information:
I wasn't going to release this yet, because i wanted to add more features, and remove anything that i later find unnecessary, But I am releasing in hope that i can get some ideas from you people on improving it.
If you find any bugs let me know and i will fix them. I have tested it many times. And have been using it for a couple days.
It should work with vbulletin version 2.x.x. I've tested it on 2.2.9 and 2.3.0
Please lick install if you find this useful
Updates:
March 30th: New version 1.1 Released.
Changes:
- Added: a PM Meter, shows percentage of how full inBox is
- Added: a preview of the private message, will show 75 characters of the message.,
- Added: 5 new images, for Meter.
- Fixed: PM Meter disappears when you have 1 new message to make space for the PM preview, Meter returns once the PM is read.
April 1st:
- Fixed bug: PM would show 1% full inBox when you had no PM's, now shows 0% when you have no messages in inBox
04-07-03 at 12:47 AM AnaFreak said this in Post #87 can't understand the directions.......of course I am not that great at this stuff, my problem is on step3.
"Notes: Make sure you edit the "forums" name to the name of your directory!
Some where at the top of your template head insert above $headnewpm"
Where is this???
It is a typo, it should read:
In the template headinclude add the following ABOVE $headnewpm
<snip code: (see install directions)>
Notes: Make sure you edit the "forums" name to the name of your directory!
I had looked at this hack when it was first released and I didn't think it was something I could use.....boy was I wrong. After some members suggested an easier way to browse my site I installed this. After only a few days it has become a huge hit on my site and I find myself using it all the time to.
Installation was so simple and this hack is such a great addition to any forum so I just want to say thanks Sebastian for releasing this.
I have a bit of an issue--I run my forum directly off of a domain, and not under a subdirectory. So how do I go about using this, as entering the forum directory as "/" doesn't work.
03-31-03 at 11:54 PM Pollo said this in Post #59 Sebastian, well my question was that my forum isn't in a directory (per se, of course it is in a directory, just the web site's home one). In other words, my forum is the site, the site the forum ie: http://domain.com
I solved it by removing:
$forumdir = "???"; // name of your forum directory
-and removing any mention of $forumdir anywhere.
Everything works now, and I'm sure members will really groove on it, DANKE!
I had same question (page 4 of this thread), and solved it via the method I posted above. Works fine now.
04-01-03 at 05:23 AM Rolodex said this in Post #65 My quota is set to 100 ... my mods are 50, and members are 40.
Edit: My BAD ... I had this set to Zero (Unlimited) ... after placing the members amount into the box, the error went away.
Thanks for the heads up guys!
Setting Maximum saved messages in Vbulletin admin area to zero *IS* a valid option (0 means unlimited, it says in the configuration option's description!)
Yes, the code needs a few small bugfixes (marked by the // ADDED comments below) so as not not div by zero if in fact limit is zero If max pm limit is 0 (unlimited), just hide the PM quota stuff.
Around line 46, add a simple IF statement. Change this:
Around line 383 where it prints this messages section:
PHP Code:
if ( $bbuserinfo[userid] != 0 ) {
echo "<center>You have $unreadpm[messages] new messages. <br/> $allpm[messages] are old messages. $meter$lastpm</center>";
} else {
echo $guestmsg;
}
change it to be:
PHP Code:
if ($pmquota == 0) $meter = ""; // ADDED
if ( $bbuserinfo[userid] != 0 ) {
echo "<center>You have $unreadpm[messages] new messages. <br/> $allpm[messages] are old messages. $meter$lastpm</center>";
} else {
echo $guestmsg;
}
First of all, very nice Hack.
What about a Option in the users Profile, wher Users can select to Popup the Assistant Window automaticly when visit the forums?