Hello Abu, The underline button does not appear on the editor menu bar. However, this button is in the script you provide us: { name: \’basicstyles\’, groups: [ \’basicstyles\’, \’cleanup\’ ], items: [ \’Bold\’, \’Italic\’, \’Underline\’, \’Strike\’ , \’Subscript\’, \’Superscript\’, \’-\’, \’CopyFormatting\’, \’RemoveFormat\’ ] },. What should I do to make it appear in the menu ? Thank you !
Hello,
These buttons are most likely disabled in config.js
https://ckeditor.com/old/comment/122939#comment-122939
First Solution is to load ckeditor locally (not cdn) so you can edit config.js.
Another way is to override the config like below, You can set removeButtons to blank like following.
Ref: https://www.gridphp.com/demo/demos/integrations/ckeditor.phps Line 196
var editor = CKEDITOR.replace( el, { removeButtons: '', on: { change: function(){ jQuery(el).val(editor.getData()); } } });