View Full Version : Notify users when reputation received?
ricknlida
11-22-2006, 10:25 AM
I could have sworn I saw a hack or mod that would notify a user via email when someone posted a reputation comment to one of his/her posts, but I can't find it now.
Is this possible?
Thanks!
Muellmann
11-26-2006, 10:47 PM
The solution would be an example like this:
(easy learning by doing - this is not a ready product just to install ;)):
1) Go in your Admin Control Panel (ACP)
2) Scroll down to "Plugins & Products" on the left side in acp's nav-frame
3) Expand "Plugin & Products" and choose "Add New Plugin"
4) Then specify:
Product: vBulletin (if you haven't till yet an own product specified, so keep "vBulletin" as default)
Hook Location: reputation_add_process (this is the hook on which your code runs)
Title: inform members about received reputation (or whatever you want)
Execution order: 5 (leave the default if you haven't many other plugins on the same hook)
Plugin PHP Code*: (it's the php-code that will run on this hook)
mail($userinfo['email'], "Reputation with score ".$score." was given at post no. ".$postid." by ".$vbulletin->userinfo['username'], "reason:\n".$vbulletin->GPC['reason']."\nthread title:\n".$threadinfo[title], "From: ".$vbulletin->options['webmasteremail']."\r\n");
Plugin is Active: Choose "YES" or it won't work! (no is the default)
5) Control if all inputs are matching and then click the "SAVE" button below!
You're done and you can be proud! You made your first little plugin :)
*This is just a very simple sample. You can modify it by your own wishes if you know what you do https://vborg.vbsupport.ru/external/2009/02/1.gif.
Note: If comes a white page instead of the page redirect
your own php code could contain a parse error.
ricknlida
11-27-2006, 08:51 AM
Thanks, Muellmann!
Skedoozy
12-05-2006, 08:50 AM
How would I modify this to send a PM instead of an email?
Kruppa
06-18-2007, 01:22 PM
I'd be really interested to know how to make it give a pop - box, like when you get a new PM, but the pop up to say 'you have new reputation' or similar. Is this possible? And hopefully simple?
SBlueman
07-08-2007, 05:16 PM
How would I modify this to send a PM instead of an email?
I'd be really interested to know how to make it give a pop - box, like when you get a new PM, but the pop up to say 'you have new reputation' or similar. Is this possible? And hopefully simple?
I am also interested in seeing if either or both are possible. The second option would be ideal.
brookemegg
11-12-2007, 01:58 AM
Thanks for this code!
SBlueman
12-22-2007, 06:16 PM
How would I modify this to send a PM instead of an email?
I'd be really interested to know how to make it give a pop - box, like when you get a new PM, but the pop up to say 'you have new reputation' or similar. Is this possible? And hopefully simple?
I am also interested in seeing if either or both are possible. The second option would be ideal.
Anyone?
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.