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.

(Screenshot added)
(Errors corrected)
 
Line 1: Line 1:
 
{{#CUSTOMTITLE:How Do I Remove the Elements Path?}}
 
{{#CUSTOMTITLE:How Do I Remove the Elements Path?}}
The [[CKEditor 3.x/Users Guide/Interface/Elements Path|elements path]] displays information about the HTML elements of the document.
+
The [[CKEditor 3.x/Users Guide/Interface/Elements Path|elements path]] displays information about the HTML elements of the document for a position of the cursor.
  
 
[[Image: CKEditor_elements_path.png|frame|center|The elements path of CKEditor]]
 
[[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.
+
If you want to get rid of it, use the <code>[http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.removePlugins removePlugins]</code> setting 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>

Latest revision as of 16:37, 24 February 2011

The elements path displays information about the HTML elements of the document for a position of the cursor.

The elements path of CKEditor


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

config.removePlugins = 'elementspath';
This page was last edited on 24 February 2011, at 16:37.