How Do I Remove the Elements Path?

This website contains links to software which is either no longer maintained or will be supported only until the end of 2019 (CKFinder 2). For the latest documentation about current CKSource projects, including software like CKEditor 4/CKEditor 5, CKFinder 3, Cloud Services, Letters, Accessibility Checker, please visit the new documentation website.

If you look for an information about very old versions of CKEditor, FCKeditor and CKFinder check also the CKEditor forum, which was closed in 2015. If not, please head to StackOverflow for support.

(Article + code added)
 
(Screenshot added)
Line 1: Line 1:
 
{{#CUSTOMTITLE:How Do I Remove the Elements Path?}}
 
{{#CUSTOMTITLE:How Do I Remove the Elements Path?}}
If you want to remove the [[CKEditor 3.x/Users Guide/Interface/Elements Path|elements path]] that displays information about the HTML elements of the document, remove the <code>[http://docs.cksource.com/ckeditor_api/symbols/src/plugins_elementspath_plugin.js.html elementspath]</code> plugin.
+
The [[CKEditor 3.x/Users Guide/Interface/Elements Path|elements path]] displays information about the HTML elements of the document.
 +
 
 +
[[Image: CKEditor_elements_path.png|frame|center|The elements path of CKEditor]]
 +
 
 +
 
 +
If you want to get rid of it, use the <code>[http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.removePlugins removePlugins]</code> function to remove the <code>[http://docs.cksource.com/ckeditor_api/symbols/src/plugins_elementspath_plugin.js.html elementspath]</code> plugin.
  
 
<source lang="javascript">
 
<source lang="javascript">
 
config.removePlugins = 'elementspath';
 
config.removePlugins = 'elementspath';
 
</source>
 
</source>

Revision as of 10:37, 17 February 2011

The elements path displays information about the HTML elements of the document.

The elements path of CKEditor


If you want to get rid of it, use the removePlugins function to remove the elementspath plugin.

config.removePlugins = 'elementspath';