Version: 4.1.2, by bananalive
Developer Last Online: Nov 2023
Category: New Posting Features -
Version: 4.0.x
Rating:
Released: 04-25-2010
Last Update: 04-26-2011
Installs: 182
DB Changes Uses Plugins Auto-Templates
Translations
No support by the author.
Description:
This mod allows each user to store standard replies which they can quickly access upon creating a reply, thread, pm or infraction.
Canned replies can be shared - For Examples, Administrators could have permission to create/share/use canned replies; and moderators permission to view/use canned replies.
Features:
Adding and editing canned replies is fully integrated into the User CP with vBulletin Editor. [+] Quick Link -> User Control Panel; Then scroll down page and you will see 'Edit your Canned Replies' url to canned replies is http://www.your-forum.com/cannedreplies.php
Permissions can be set per usergroup
Quickly Reply with Standard Message either in Quick Reply [+] or Advanced Reply [+]
Can also be used in NewThread [+] User Infractions [+] and PM System
Installation:
Follow instructions included in .zip
Click Install
Future Features:
Request new features in comments
Donations:
If you want to donate please click 'Support Developer'
I updated this to 1.) see if I could and 2.) because someone posted a paid request... that never panned out so if I can separate out what I changed, I will post here with code changes.
I then replaced everything in clientscript/cannedreplies.js with:
Code:
function insertCannedReply(text)
{
text = text.replace(/\n/g, "");
text = text.replace(/<br>/g, "\n");
if (document.getElementById("vB_Editor_001"))
{
CKEDITOR.instances.vB_Editor_001_editor.insertHtml(text);
}
else
{
CKEDITOR.instances.vB_Editor_QR_editor.insertHtml(text);
}
}
It is important to make sure the template changes in the new product xml take place for this to work.
I believe that is all of the changes. You may want to backup the modified files before making the edits.
--
@mmackinnon I updated this mainly to see if I could, because I know CKEditor is a big change. I then found out someone was looking to pay to have it updated. I contacted them, but never heard back. If you do these edits, it should work - if you really have the urge to pay me something then you can find my paypal info in my released mods :P
Hi Eric, I tried your fixes on 4.1.5, but it made no difference unfortunately. I am also more than willing to send you some funds for this to be fixed. Thank you very much!
Hi Eric, I tried your fixes on 4.1.5, but it made no difference unfortunately. I am also more than willing to send you some funds for this to be fixed. Thank you very much!
OK, edit. I had the TMS beta from Andreas installed, and disabling that brought my canned replies back now. So I can confirm that it is working perfectly now. Sending some funds over to Eric now. Thanks a million!
OK, edit. I had the TMS beta from Andreas installed, and disabling that brought my canned replies back now. So I can confirm that it is working perfectly now. Sending some funds over to Eric now. Thanks a million!
Thanks Taurus, although you didn't really have to do that lol It is appreciated though. For everyone else, make sure the template edits were made (vB can be stubborn with product files sometimes) - otherwise the fixes will not work.