Install N1ED plugin for CKEditor
The best way to enable Bootstrap (styles, grid, blocks and widgets) in your editor is to install N1ED plugin for CKEditor. The file manager, image editor and other handy tools are also included in this add-on.
1
2
3
Enable Plugin
Enable the N1ED add-on in the config:
Edit config.js
In your code (alternative)
CKEDITOR.editorConfig = function(config) {
config.extraPlugins = "N1ED-editor";
config.skin = "n1theme"; // N1ED's own theme for CKEditor
config.removePlugins = "iframe,magicline"; // N1ED has better support of this
config.versionCheck = false; // skip its upgrade notice of CKEditor itself
// Get your own key then
config.apiKey = "N1ED24RR1234123412341234";
}
Please avoid using spaces in extraPlugins if you have another plugins enabled. Use comma only as a separator.
The N1ED plugin is fully functional after this step. Next, you will need to link your file storage by installing the file manager backend on your server.
4
Install backend
Now you need to install the file manager server-side script on your server to enable file manager functionalities in your editor. Follow the instructions provided in the link to complete the setup.
✓