0

I've downloaded the 'timestamp' plugin example, but no matter what I do, I can't get the new button to appear in my toolbar. Otherwise, CKEditor seems to work great.

My config.js:

CKEDITOR.editorConfig = function( config ) {

config.extraPlugins = 'timestamp';

config.toolbar = [
    { name: 'basicstyles', items: [ 'Bold', 'Italic','Underline','Strike' ] },
    { name: 'paragraph', items: [ 'NumberedList', 'BulletedList' ] },
    { name: 'links', items: [ 'Link', 'Unlink' ] },
];

config.removeDialogTabs = 'link:advanced;link:target';

};

1 Answer 1

2

Make sure you cleared browser cache. also add the button where you want it to go

config.toolbar = [
    { name: 'basicstyles', items: [ 'Bold', 'TimeStamp', 'Italic','Underline','Strike' ] },
    { name: 'paragraph', items: [ 'NumberedList', 'BulletedList' ] },
    { name: 'links', items: [ 'Link', 'Unlink' ] },
];
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.