34

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.

Upperstage
  • 3,747
  • 8
  • 44
  • 67

2 Answers2

60

Answer is here: http://cksource.com/forums/viewtopic.php?p=42512&sid=5e2f0367542c8dc9468e6addb20d8d70#p42512

config.removePlugins = 'elementspath';
config.resize_enabled = false;
Horen
  • 11,184
  • 11
  • 71
  • 113
Jason
  • 601
  • 4
  • 2
47

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
});
Andreas Bergström
  • 13,891
  • 5
  • 59
  • 53
Yaakov Shoham
  • 10,182
  • 7
  • 37
  • 45
  • Maybe I am referring to the wrong object. The is a list of HTML items at the bottom of the editor - body p ul li - and the client does not like this display and wants it removed. – Upperstage Jan 04 '10 at 20:09
  • It called `elementspath`. when you do `removePlugins` with `'elementspath'` - it won't appear. How do you create your CKE instance? – Yaakov Shoham Jan 04 '10 at 20:25
  • WOW! Who would have thought? – Upperstage Jan 04 '10 at 20:30
  • removing the bottom bar, gives an error at version 4.1 Errore: TypeError: CKEDITOR.document.getById(...) is null – albanx Jul 17 '13 at 06:31