Quote Originally Posted by delia View Post
Definitely the config.js file is being called in admin/ckeditor.php and not heeded. So a fix please.
There are allot of things one can turn on or off depending on CKEditor build.. CKEditor 4.14 is what I'm using and not all the toolbars are on based on the config.js file in the editor folder. No config.js entry, turns them all on and one really do not need all.. CKEditor 5.19 build has very little tools installed and really not usable yet unless one builds the tools they need into it. It also requires a different admin script to work with ZC. By listing the tools one wants ..
Code:
config.toolbar = [
        { name: 'clipboard', items: [ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo' ] },
turns them on and listing tools one doesn't want
Code:
// Remove some buttons provided by the standard plugins, which are
    // not needed in the Standard toolbar.
    config.removeButtons = 'Subscript,Superscript,Font,Flash';
turns them off..
Not sure on the latest CDN version...
If you are not sure what toolbars exist in CKEditor 4, or you wish to create your own on/off list, check out there toolbar configurator tool.. Life just gets too simple sometimes!!