CKEDITOR: some icons do not appear on my toolbar

I would like to ask this small but very important question that I received: (I downloaded CKeditor 4.3.2 and believe that I searched this over the Internet for ssooooooo for a long time without any success.)

I tried to show the "Smiley" icon on my toolbar, but it does not show it, and this happens with some others, such as "Save", "Print", "NewPage", for example, and I don’t know, I know why. Also, when I embed a link to a video, you don’t show people watching how it was once published ... Everything works fine with others, but not with the ones I just mentioned! You are welcome! Thanks for the answer!

PS: I found on some forums that the icons in this version 4.3.2 change their names, do you think that is the reason?

here is my code:

CKEDITOR.editorConfig = function( config )
{   
uiColor: '#14B8C4',
config.toolbar = 'Full';

  `config.toolbar_Full =
[
{ name: 'document', items : [ 'Source','-', 'Save','NewPage','DocProps','Preview','Print','-','Templates', 'Emoticons' ] },//solo Source
{ name: 'clipboard', items : [ 'Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo', 'clipboard' ] },//BIen
{ name: 'editing', items : [ 'Find','Replace','-','SelectAll','-','SpellChecker', 'Scayt', 'TextColor' ] },//Solo SpellChecker
{ name: 'forms', items : [ 'Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', //nada
    'HiddenField' ] },
'/',
{ name: 'basicstyles', items : [ 'Bold','Italic','Underline','Strike','Subscript','Superscript','-','RemoveFormat' ] },//Todas
{ name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote','CreateDiv', 'JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','-','BidiLtr','BidiRtl' ] },//Todas hasta Bloquiote
{ name: 'links', items : [ 'Link','Unlink','Anchor' ] }, //Todas
{ name: 'insert', items : [ 'Image','Flash','Table','HorizontalRule',"Smiley",'SpecialChar','PageBreak','Iframe' ] }, //Falta flash, smiley, ifame
'/',
{ name: 'styles', items : [ 'Styles','Format','Font','FontSize' ] }, 
{ name: 'colors', items : [ 'TextColor','BGColor' ] }, //ninguno
{ name: 'tools', items : [ 'Maximize', 'ShowBlocks','-' ] }
];

//ToolBar groups configuration
                config.toolbarGroups = [
                { name: 'document', groups: ['mode', 'document', 'doctools']},
                { name: 'clipboard', groups: ['clipboard', 'undo']},
                { name: 'editing', groups: ['find', 'selection', 'spellchecker']},
                { name: 'forms'},
                '/',
                { name: 'basicstyles', groups: ['basicstyles', 'cleanup']},
                { name: 'paragraph', groups: ['list', 'indent', 'blocks', 'align', 'bidi']},
                { name: 'links'},
                { name: 'insert'},
                '/',
                { name: 'styles'},
                { name: 'colors'},
                { name: 'tools'},
                { name: 'others'},
                ];
};

`

+4
source share
2 answers

Finally, I got a solution that was very simple. But before I tell you the solution, I will tell you the reason:

  • Updated by CKEditor. So, the names of some plugins have been changed, you will not find them with the same name as before.

Solution: go to Download CKEditor with the plugins you have selected , and there you will find three different packages to download and below there is another one: “Or let me configure my CKEditor”, click on it and “download and configure the editor”.

, , , ( , ), , ().

, .

+2

?

, CKeditor, , , .

, , . , TextColor, ..

, . , - .

0

All Articles