0

I am using django to make a science related blog site where I am using django-ckeditor as the richtext editor. I encountered the following problem:

I am trying to integrate the 'ckeditor_wiris' external plugin in custom toolbar. Other external plugins - 'Codesnipet' and 'Symbol' are working fine but 'ckeditor_wiris' is not visible on the toolbar.

CKEDITOR_CONFIGS = {
    'default': {
        'height':'250px',
        'width':'100%',
        'tabSpaces': 4,
        'toolbar': 'Custom',
        'toolbar_Custom': [
            ['Smiley', 'CodeSnippet', 'Symbol', 'ckeditor_wiris'],
            ['Bold', 'Italic', 'Underline', 'RemoveFormat', 'Blockquote'],
            ['TextColor', 'BGColor'],
            ['Link', 'Unlink'],
            ['NumberedList', 'BulletedList'],
            ['Maximize']
       ],
        'extraPlugins': ','.join(['codesnippet',
                                  'symbol',
                                  'ckeditor_wiris'
                                  ]),
    }
}

WIRIS plugin not visible on toolbar :

enter image description here

Though if I use the 'full' toolbar instead of 'custom' then 'ckeditor_wiris' is visible on the toolbar. What can I do to make it visible on the toolbar in custom settings?

Beso
  • 1,176
  • 5
  • 12
  • 26
  • When you look in your browsers debugger do you have any errors? – Wazy Oct 18 '21 at 20:04
  • No, I do not see any errors in the browser. Maybe I am writing the name of the plugin in the custom toolbar and there is nothing in the documentation either. – lab17ahnaf Oct 24 '21 at 09:35
  • I would try just `Wiris` I do believe capitals also matter – Wazy Oct 25 '21 at 14:44

0 Answers0