Any idea why this removes the about and special character buttons but not the spell checker.
<script>
CKEDITOR.disableAutoInline = true;
CKEDITOR.inline('editable');
CKEDITOR.config.removePlugins = 'about,specialchar,scayt';
</script>
Also, if I wanted to add the Maximize plugin I've tried
CKEDITOR.config.extraPlugins = 'maximize';
But doesn't work,
Thanks.
Bran

Sorry, the scayt
Sorry, the scayt functionality does get disabled with the above code, however I was still left with the abc button. I removed this by editing the config.js file
config.toolbarGroups = [
{ name: 'editing', groups: [ 'find', 'selection' , 'spellchecker' ] }, //remove spellchecker
Now, if I could just figure out how to add the maximize button I'd be happy...
Which CKEditor version do you
Which CKEditor version do you use? If you want to customize your CKEditor 4.x build, it's most recommended to use CKBuilder. Use the preset that you want to base your CKEditor installation on, then add and remove plugins from the Selected plugins list and when you are happy with your configuration, just download the custom build that you created. In this way your installation will only include what you need, without you having to manually emable and disable any pieces. All selected plugins will then be turned on and Advanced Content Filter will be configured for you, too.
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
I used the CKBuiler option
I used the CKBuiler option and as a default the maximize button is included. ( I'm using it inline incase that makes any difference?)