Hi All,
I'm trying to edit the buttons that show in the CKEditor toolbar, with no luck. The file that I'm editing is skin/common_files/modules/HTML_Editor/editors/ckeditor/config.js
Here's the code I've inserted:
Code:
CKEDITOR.editorConfig = function( config ) {
// This is actually the default value.
config.toolbar_Full =
[
['Source','-','Save','PasteText','PasteFromWord','-','SpellChecker', 'Scayt'],
['Undo','Redo'],['Format','-','Bold','Italic','Underline','-','NumberedList','BulletedList'],['Link','Unlink','Anchor','-','Image']
];
};
This actually worked in a previous x-cart install of mine (4.4.1 store), but it's not working in my new 4.4.3 store. It simply keeps showing the entire array of buttons (which is overwhelming and unnecessary).
Any ideas?