Hello community!
I`m sorry to come around with this problem but can not find a clue how to solve this.
I can not manage the Editor to show the configured plugins. I tried both ways manual and with the builder and with different plugins.
For example the "letter-spacing" plugin does not work.
As you can see in the attached screenshot, it does not show the letter-tracking function.
Also the manual configuration by the config.js file does not work:
***********************************config.js***************************
/**
* @license Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.editorConfig = function( config ) {
// Define changes to default configuration here. For example:
config.uiColor = '#14B8C4';
//My Config
config.language = 'de';
config.allowedContent = true;
//SAFEX Plugins
config.extraPlugins = 'letterspacing';
config.extraPlugins = 'video';
};
***********************************************************************
Here I also tried to use the "video-plugin". This works partly. I can not find any toolbar-button but when I do a double-click on an existing video I can see and use the corresponding dialog from the plugin.
Can anybody help? I suggest I made a "greenhorn-mistake".
Sincerely
Jens
P.S: Using Mozilla 28.0
As for using the extraPlugins
As for using the extraPlugins configuration setting: you should add a list of comma-separated plugins in one entry, like here:
As for the plugins that do not work: from your list I can see that these are some third-party plugins that you downloaded from the Add-ons Repository. Please note that these were created by the community and are supported by their authors, so in any such case you should simply ask them what is wrong. Sometimes it's a matter of some additional configuration steps, sometimes these can be bugs, but in any case, you should contact the developers that created them (e.g. add a comment on the plugin's page in the repository).
We (as CKSource, creators of CKEditor) are only able to support plugins that are created by ourselves and are marked as such in the repository. Sorry for any inconvenience that this might have caused.
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!