This vBulletin 5 plugin allows drag and drop image upload into the editor making it super easy and convenient for users to attach and share their pictures.
Due to the way vBulletin makes it hard to extend the functionality of CKEditor, a third-party rich text editor used in vBulletin, this mod has no choice but to require editing existing CKEditor-related JS and PHP files. This means that you have to reapply the changes every time you upgrade vBulletin 5. (I created a JIRA in Sep 2016 to make CKEditor configurable. Please vote for it here.)
Additional changes needed but not included in the documentation:
This mod introduced an issue in the editor where the Underline button U went missing. To fix this issue, you have to edit the /js/ckeditor/config.js file on your server using FTP or cPanel (or its equivalent).
Find the following line:
and then remove Underline, (include the trailing comma)
You will have to clear your browser cache for it to get the latest version of config.js. If you are using CDN or CloudFlare, you would have to also purge the cache on their server.
Thanks to William for reporting this issue!
NOTE:
This plugin is no longer available for purchase. Starting vB 5.5.6 (which is currently in Alpha version), drag and drop uploads will be natively supported.
Watch the video screencast demo on YouTube.
Due to the way vBulletin makes it hard to extend the functionality of CKEditor, a third-party rich text editor used in vBulletin, this mod has no choice but to require editing existing CKEditor-related JS and PHP files. This means that you have to reapply the changes every time you upgrade vBulletin 5. (I created a JIRA in Sep 2016 to make CKEditor configurable. Please vote for it here.)
Additional changes needed but not included in the documentation:
This mod introduced an issue in the editor where the Underline button U went missing. To fix this issue, you have to edit the /js/ckeditor/config.js file on your server using FTP or cPanel (or its equivalent).
Find the following line:
Code:
config.removeButtons = 'Underline,Subscript,Superscript';
Code:
config.removeButtons = 'Subscript,Superscript';
Thanks to William for reporting this issue!
NOTE:
This plugin is no longer available for purchase. Starting vB 5.5.6 (which is currently in Alpha version), drag and drop uploads will be natively supported.
Watch the video screencast demo on YouTube.
Comment