Para eliminar determinados botones en el editor DHTML CKEditor (yo lo he probado en la versión 4) hay que añadir en el archivo config.js la siguiente linea de código:
config.removeButtons = 'Underline,Subscript,Superscript,Strike';
Donde «Underline,Subscript,Superscript,Strike» son nombres de diferentes botones.
El listado completo de todos los nombres de botones es:
«Source»
«Save»
«NewPage»
«DocProps»
«Preview»
«Print»
«Templates»
«document»
«Cut»
«Copy»
«Paste»
«PasteText»
«PasteFromWord»
«Undo»
«Redo»
«Find»
«Replace»
«SelectAll»
«Scayt»
«Form»
«Checkbox»
«Radio»
«TextField»
«Textarea»
«Select»
«Button»
«ImageButton»
«HiddenField»
«Bold»
«Italic»
«Underline»
«Strike»
«Subscript»
«Superscript»
«RemoveFormat»
«NumberedList»
«BulletedList»
«Outdent»
«Indent»
«Blockquote»
«CreateDiv»
«JustifyLeft»
«JustifyCenter»
«JustifyRight»
«JustifyBlock»
«BidiLtr»
«BidiRtl»
«Link»
«Unlink»
«Anchor»
«CreatePlaceholder»
«Image»
«Flash»
«Table»
«HorizontalRule»
«Smiley»
«SpecialChar»
«PageBreak»
«Iframe»
«InsertPre»
«Styles»
«Format»
«Font»
«FontSize»
«TextColor»
«BGColor»
«UIColor»
«Maximize»
«ShowBlocks»
«button1»
«button2»
«button3»
«oembed»
«MediaEmbed»
«About»
Nota: ojo los nombres de los botones deben ir separados por «,» pero sin espacios entre ellos.
eso me sirvio de mucho papa, gracias.