Version: 1.0.2, by Krofh
Developer Last Online: Jun 2013
Version: 3.5.4
Rating:
Released: 04-07-2006
Last Update: 07-06-2006
Installs: 39
DB Changes Uses Plugins
No support by the author.
Quote Notification
Note: This hack does not work in vBulletin 3.6. If someone would like to port it, that's fine with me, but I don't feel like updating this particular hack.
Description: This plugin will add a "Quote Notification" option for users to select. If selected, they will receive a notification by PM whenever someone quotes them in a post.
Installation:
Import the product XML file
Go to your User CP > Edit Options and select "Quote Notification" if you like
If you want to change the content of the PM that gets sent, the phrases are quotenotify_subject and quotenotify_message
The email notification has a separate phrase, quotenotify_emailmessage
If you want to change the Profile Field options, find the "Quote Notification" field in your User Profile Field Manager in the ACP.
If you want to set a default user for the notification PMs to be sent through, go to ACP > vBulletin Options > Message Posting and Editing Options > Quote Notification Sender; set it to 0 for the sender to be whoever did the quoting
Warning: DO NOT change the title of the Profile Field from "Quote Notification", or the values from "Private Message", "Email", and "No" or this hack will not work.
Contains:
1 Plugin
1 Profile Field
2 Phrases
This hack is somewhat similar to Who quoted me?, but still considerably different, and if your forum is concerned about quotes then both could probably go rather nicely together.
Version History: 1.0.2
- Fixed compatibility issues with Backlink For Quotes
- Added option for notification by Email or Private Message
- Added ACP option for one specific PM sender or for the PMs to be sent by the user who did the quoting (original functionality) 1.0.1
- Fix for users with apostrophes 1.0
- Original version
Please click install.
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
its work perfect on 3.8.4
i have one question
is it posible to add feature to notify me like notify me when someone post comment on my profile, etc
not to notify me over pm
Thanks for working on it. We have this installed on several forums running various versions of vB (3.6.8 through 3.8.4) with no issues.
Quote:
Originally Posted by Krofh
Ahhh, my mistake. Looking into it, it turns out the $post variable doesn't have the forumid... change the first line I had you put in:
Code:
if ($post['forumid'] != 65) {
To the following:
Code:
if ($threadinfo['forumid'] != 65) {
When I did that on my server, it worked fine.
This needs to be updated for ajax. It causes a 'duplicate post' message with ajax quick reply. If you multiple forums to exclude and you don't use ajax, this code will work too:
Code:
if !in_array($threadinfo['forumid'], array(X,Y,Z)) {
If you already have this mod installed, first delete the existing Quote Notification Profile Field.
Then just install this product. Click Allow Overwrite if you have the old version installed.
Let me know how it goes. I've only tested on vB 3.7.2.
Thank you for releasing this update SpankMe.
For everyone else reading this:
I can confirm the attachment in the above post (Go here to download the attachment: https://vborg.vbsupport.ru/showpost....4&postcount=77) is working on 3.8.6 Patch Level 2, but there are a couple things to keep in mind:
I can't see the option to set a default user for the notification PMs to be sent through under Admin Control Panel > vBulletin Options > Message Posting and Editing Options. In my case, I don't care about this, because I want the PM to come from the user doing the quoting, which works fine.
If you want to make the default option be that the user gets a private message, instead of no notification, then go to Admin Control Panel > User Profile Fields > User Profile Field Manager > Click the Edit link for Quote Notification (at bottom of page), then change the order of the listed fields putting whatever you want the default to be as the top option. It's making the decision to Email/PM/Not based on the text content of this field, not the position selection.
If you make the change in step 2 above, and want all your current users to get PM or email notifications by default, then run one of the two MySQL queries (BACKUP THE TABLE BEFORE YOU DO THIS, JUST IN CASE):
update `vb_userfield` set field[#]='Private Message';
update `vb_userfield` set field[#]='Email';
(where [#] is the number of the field that can be seen in Admin Control Panel > User Profile Fields > User Profile Field Manager)
Finally, you'll want to make the change suggested by SpankMe in this post. Otherwise, users will see a Fatal Error if they quote the post of a user that has quote notification turned on, but PMs turned off, PMs contacts only, or PM quota is full. https://vborg.vbsupport.ru/showpost....0&postcount=51
You'll want to do a phrase search for "Kiwi Biker forums" and replace it with the name of your forums, as it is hard coded into the email that goes out (when users choose to be notified by email)
Good luck and thanks again to both SpankMe (want a spanking? ) and Krofh.
I can confirm the attachment in the above post (Go here to download the attachment: https://vborg.vbsupport.ru/showpost....4&postcount=77) is working on 3.8.6 Patch Level 2, but there are a couple things to keep in mind:
I can't see the option to set a default user for the notification PMs to be sent through under Admin Control Panel > vBulletin Options > Message Posting and Editing Options. In my case, I don't care about this, because I want the PM to come from the user doing the quoting, which works fine.
If you want to make the default option be that the user gets a private message, instead of no notification, then go to Admin Control Panel > User Profile Fields > User Profile Field Manager > Click the Edit link for Quote Notification (at bottom of page), then change the order of the listed fields putting whatever you want the default to be as the top option. It's making the decision to Email/PM/Not based on the text content of this field, not the position selection.
If you make the change in step 2 above, and want all your current users to get PM or email notifications by default, then run one of the two MySQL queries (BACKUP THE TABLE BEFORE YOU DO THIS, JUST IN CASE):
update `vb_userfield` set field[#]='Private Message';
update `vb_userfield` set field[#]='Email';
(where [#] is the number of the field that can be seen in Admin Control Panel > User Profile Fields > User Profile Field Manager)
Finally, you'll want to make the change suggested by SpankMe in this post. Otherwise, users will see a Fatal Error if they quote the post of a user that has quote notification turned on, but PMs turned off, PMs contacts only, or PM quota is full. https://vborg.vbsupport.ru/showpost....0&postcount=51
You'll want to do a phrase search for "Kiwi Biker forums" and replace it with the name of your forums, as it is hard coded into the email that goes out (when users choose to be notified by email)
Good luck and thanks again to both SpankMe (want a spanking? ) and Krofh.
u need to edit the plugin to set a default user to send the pm