I would like to allow to enter certain html tags such as iframe and embed in Magento's CMS editor. Magento does not allow those tags.
Is there a model or controller that I can edit to allow iframe and embed tags?
feedback
|
|
Look in this file: js/mage/adminhtml/wysiwyg/tiny_mce/setup.js Find this block of code:
and add this after it:
It's a simple comma delimited list of tags you want to allow. | |||
|
feedback
|
|
Josh is right on target, I added this row to accept a "Find us on Faceb..."-iframe:
It has an extra attribute that's within the autogenerated FB-iframe. | |||
|
feedback
|