Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
4.2k views
in Plugins by

In my Q2A installation I don't want show the "add flash" button in the CKEditor.
So I followed this advice:

http://docs.cksource.com/CKEditor_3.x/Howto/Plugin_Removal

Now my config.js file looks like this:

CKEDITOR.editorConfig = function( config )
{
    config.linkShowAdvancedTab = false;
    config.linkShowTargetTab = false;
    config.removePlugins = 'flash';
};

However, the "add flash" button is still shown in the editor.
Any ideas what I am missing here?

 

Q2A version: 1.6.3

1 Answer

+1 vote
by
edited by

I am not sure if changes made in config.js will work. At least it did not work for me. 

Go to: Admin -> Plugins -> CKEditor-Options: Under Toolbar buttons 

Default: ['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar']

Remove Flash: ['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar']

...