Can anybody tell me how can I use embedMedia plugin in ckeditor? I am using drupal 6 and WYSIWYG editor. I have added the folder into plugin folder. And added a line on config.js,
config.extraPlugins += (config.extraPlugins? ‘,MediaEmbed’:
‘MediaEmbed’);
But I have not seen the option on my configuration. Am I doing anything wrong?
Thanks in advance
You need to add it to your config.toolbar_XXX setting in order to have it appear.
Look in your config.js file for something like:
The standard full toolbar config looks like this:
You would need to add an entry for your plugin in the spot you want the button to appear. Check the plugin readme to see what the button should be called.
If you don’t see this in your config.js file, you can add it there and insert the name of the button for the embedmedia plugin. It looks like the name of the button is “MediaEmbed”, try adding it next to one of the current buttons (add ‘MediaEmbed’) and it should be visible in the toobar.
It might be helpful to take a look at the CKEditor docs to gain a better understanding of how the toolbar is customized:
CKEditor Toolbar