Search code examples
javascriptckeditorfckeditor

Remove status bar from CKEditor


The CKEditor website is somewhat lacking; can you tell me how to remove the status bar ('body ul li ...') from CKEditor?

There is a list of HTML at the bottom of the editor - body p ul li - representing how the typed text will be generated and I want to remove this list.


Solution

  • Like this, for example:

    CKEDITOR.appendTo('container', {
        removePlugins: 'elementspath' 
    });
    

    As mentioned by Jason below, you might also want to remove the bar completely using:

    CKEDITOR.appendTo('container', {
        removePlugins: 'elementspath',
        resize_enabled: false
    });