Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Just to point out, the editor is tinyMCE and probably already has options for controlling allowed elements. I've tagged this question as such so that others might be able to help better. – clockworkgeek Mar 2 '11 at 12:17

4 Answers

up vote 22 down vote accepted

Look in this file: js/mage/adminhtml/wysiwyg/tiny_mce/setup.js

Find this block of code:

    var settings = {
        mode : (mode != undefined ? mode : 'none'),
        elements : this.id,
        theme : 'advanced',
        plugins : plugins,
        theme_advanced_buttons1 : magentoPlugins + 'magentowidget,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect',
        theme_advanced_buttons2 : 'cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,forecolor,backcolor',
        theme_advanced_buttons3 : 'tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,iespell,media,advhr,|,ltr,rtl,|,fullscreen',
        theme_advanced_buttons4 : 'insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,pagebreak',
        theme_advanced_toolbar_location : 'top',
        theme_advanced_toolbar_align : 'left',
        theme_advanced_statusbar_location : 'bottom',
        theme_advanced_resizing : true,

and add this after it:

        extended_valid_elements : 'iframe[src|style|width|height|scrolling|marginwidth|marginheight|frameborder],style,script',

It's a simple comma delimited list of tags you want to allow.

share|improve this answer

Josh is right on target, I added this row to accept a "Find us on Faceb..."-iframe:

extended_valid_elements : 'iframe[src|style|width|height|scrolling|marginwidth|marginheight|frameborder|allowTransparency],style,script',

It has an extra attribute that's within the autogenerated FB-iframe.

share|improve this answer

How can i add facebook data tags like data-href and data-width to the list.

share|improve this answer

When editing a CMS page, you can switch to an html view.

enter image description here

By pressing the html button
enter image description here

There you are able to add the iframe onto the page right in the html

share|improve this answer
This is not enabling any extra HTML tag - with new edit and switching to HTML editing mode, it's removed. – tomis Mar 20 at 16:35
@tomis I was using magentogo when I answered this. I didn't like it very much, there was no ftp, and hence no full control over the site. I found switching to html mode in the cms was a good work around for not having ftp – Maudicus Mar 20 at 17:24
Understand. BTW, I hate Magento at all and all customers who wants from me to do anything in there... – tomis Mar 20 at 17:38

protected by Community Jul 31 '12 at 6:21

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.