onetdev
onetdev

Reputation: 389

How to display 'Iframe content' instead of the placeholder in CKEditor's full package

For the standard package the Iframes are displayed correctly but that's not the case with the full package. Technically it's possible but I don't know how to do this exactly.

So in the full package instead of a red 'IFRAME' image (placeholder) I want to display its actual content.

Upvotes: 0

Views: 1280

Answers (1)

joshuarrrr
joshuarrrr

Reputation: 21

If you're looking to remove the iframe placeholder image, you probably just need to disable the "iframe" plugin.

So in your config.js, add

config.removePlugins = 'iframe';

Upvotes: 2

Related Questions