Forum for discussing general topics related to Couch.
3 posts Page 1 of 1
Is there any way to enable plugins in ckeditor?

I am using Couch v2 with CKEditor v4.6.
Perhaps you'll find the following threads useful -
viewtopic.php?f=2&t=8683
viewtopic.php?f=3&t=10442#p25767
For more charge update page, delete cache and wait, or the plugins and customization of the toolbar changes.

Code: Select all
CKEDITOR.editorConfig = function( config ) {
   // Define changes to default configuration here. For example:
   config.language = 'pt-br';
   
   // config.extraPlugins = 'allMedias,embedbase';
   // config.uiColor = '#AADC6E';
   config.extraPlugins = 'lineutils';
   config.extraPlugins = 'Widget';
   config.extraPlugins = 'image2';
   config.extraPlugins = 'video';
   
   extraAllowedContent = 'video[*]{*};source[*]{*}';
}


Code: Select all
<cms:editable name='page_content' label='Content' type='richtext' toolbar='full' custom_toolbar='#image2,#Widget,#lineutils,#video' no_xss_check='1' />
3 posts Page 1 of 1
cron