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: (Updated on Mar. 3, 2022)
This plugin is temporarily unavailable for purchase due to conflict to the existing drag and drop upload which was added in vB 5.5.6. Although drag and drop upload is now supported by default, it still lacks support for pasting images for upload at the time of this writing. The attachment drop zone is also limited to the attachment panel section only. It does not allow dropping images into the editor box itself. These limitations are supported in this mod. This mod is mostly working at the moment and it's installed here for testing. Please click the arrow icon in the quoted post below to see more details on what is working and what is not.
Updated on Jan 24, 2023: Pasting images has been added natively to vB5 in the past few releases. Thus, this mod will no longer be available for purchase.
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: (Updated on Mar. 3, 2022)
This plugin is temporarily unavailable for purchase due to conflict to the existing drag and drop upload which was added in vB 5.5.6. Although drag and drop upload is now supported by default, it still lacks support for pasting images for upload at the time of this writing. The attachment drop zone is also limited to the attachment panel section only. It does not allow dropping images into the editor box itself. These limitations are supported in this mod. This mod is mostly working at the moment and it's installed here for testing. Please click the arrow icon in the quoted post below to see more details on what is working and what is not.
Updated on Jan 24, 2023: Pasting images has been added natively to vB5 in the past few releases. Thus, this mod will no longer be available for purchase.
Originally posted by glennrocksvb
View Post
Watch the video screencast demo on YouTube.
Comment