最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - CKEditor: How to hide the spell checker button - Stack Overflow

programmeradmin3浏览0评论

I've been ruthlessly removing buttons/plugins but I just can't find how to remove the spell checker button. I've managed to remove the SCAYT plugin so that no longer shows but the spell checker button won't budge:

CKEDITOR.editorConfig = function( config ) {
    config.resize_enabled = false;
    config.removeButtons = 'Cut,Copy,Paste,PasteText,PasteFromWord,Undo,Redo,Anchor,Underline,Strike,Subscript,Superscript,addFile,Image,Table,Styles,Format,Maximize,HorizontalRule,Unlink,Blockquote,Indent,Outdent,RemoveFormat,Source,Spell';
    config.removePlugins = 'about,specialchar,scayt,spellchecker,elementspath,resize';
};

I've also tried adding various spelling variations to removeButtons such as SpellChecking, SpellCheck, Spelling etc. What do I need to set?

I've been ruthlessly removing buttons/plugins but I just can't find how to remove the spell checker button. I've managed to remove the SCAYT plugin so that no longer shows but the spell checker button won't budge:

CKEDITOR.editorConfig = function( config ) {
    config.resize_enabled = false;
    config.removeButtons = 'Cut,Copy,Paste,PasteText,PasteFromWord,Undo,Redo,Anchor,Underline,Strike,Subscript,Superscript,addFile,Image,Table,Styles,Format,Maximize,HorizontalRule,Unlink,Blockquote,Indent,Outdent,RemoveFormat,Source,Spell';
    config.removePlugins = 'about,specialchar,scayt,spellchecker,elementspath,resize';
};

I've also tried adding various spelling variations to removeButtons such as SpellChecking, SpellCheck, Spelling etc. What do I need to set?

Share Improve this question asked Jan 11, 2015 at 4:55 MartynMartyn 6,38312 gold badges62 silver badges131 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 25

If you want just to remove the button, but keep the plugin, then just use:

config.removeButtons = 'Scayt';

As for the removing plugins, following config should do the job:

config.removePlugins = 'wsc,scayt';
发布评论

评论列表(0)

  1. 暂无评论