It does not actually remove the 'bottom bar' but it turns the displaying of code/style fragments off. Does anybody know where/how to remove the complete bottom bar - and maybe even replace it with the button bar? greetz, t..
Open config.js add config.removePlugins = 'elementspath';
Open ckeditor.js (compressed version) Search for cke_bottom In that area you replace <tr',s?'':' style="display:none"','><td id="cke_bottom_ with <tr style="display:none"','><td id="cke_bottom_ The name of variable s could differ depending on your version of ckeditor.
And the bottom bar is gone. Note: you lose the resizing handle as well. Full window editing still works though.
Re: Remove tags on bottom bar
eg CKEditor.replace('YourEditor', { removePlugins : 'elementspath' })
Re: Remove tags on bottom bar
CKEDITOR.editorConfig = function( config ) { config.toolbar = 'MyToolbar'; config.removePlugins = 'elementspath'; }..inside config.js
It does not actually remove the 'bottom bar' but it turns the displaying of code/style fragments off. Does anybody know where/how to remove the complete bottom bar - and maybe even replace it with the button bar?
greetz, t..
Re: Remove tags on bottom bar
https://dev.fckeditor.net/browser/CKEdi ... eme.js#L61
Re: Remove tags on bottom bar
Re: Remove tags on bottom bar
Open config.js
add config.removePlugins = 'elementspath';
Open ckeditor.js (compressed version)
Search for cke_bottom
In that area you replace
<tr',s?'':' style="display:none"','><td id="cke_bottom_
with
<tr style="display:none"','><td id="cke_bottom_
The name of variable s could differ depending on your version of ckeditor.
And the bottom bar is gone.
Note: you lose the resizing handle as well. Full window editing still works though.
Re: Remove tags on bottom bar
Adding this to config.js
config.removePlugins = 'elementspath';
Adding this to my css
#cke_bottom_detail,.cke_bottom{display:none}
As I eventually update the version of ckeditor.js, I'd rather be able to just drop in the new version vs reapplying changes to it.
Re: Remove tags on bottom bar
Just be sure to add the css to your own global css file, not CK-Editor's contents.css file (it doesn't work there).
Re: Remove tags on bottom bar
config.removePlugins = 'elementspath';
config.resize_enabled = false;
I am using this code but it's
I am using this code but it's removing the status bar... why?
<textarea cols="80" id="txtArticleComment" name="txtArticleComment" rows="20" required></textarea> <script> // Replace the <textarea id="editor"> with an CKEditor // instance, using default configurations. CKEDITOR.replace( 'txtArticleComment', { language: 'ar', uiColor: '#14B8C4', resize_enabled: 'false', removePlugins: 'elementspath', toolbar: [ [ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ], [ 'TextColor', 'BGColor' ], [ 'BidiRtl', 'BidiLtr' ], [ 'JustifyRight', 'JustifyCenter', 'JustifyLeft', 'JustifyBlock' ], [ 'Blockquote', 'HorizontalRule', 'Smiley', 'SpecialChar' ], [ 'Preview', 'Maximize' ] ], height: 100, width: '100%' }); </script>Because the resize_enabled
Because the resize_enabled option accepts boolean, not string. So you should have:
Piotrek (Reinmar) Koszuliński
CKEditor JavaScript Developer
--
CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+