Magento - 如何在 Magento 的 CMS 编辑器中允许某些标签(iframe、嵌入)?
Posted
技术标签:
【中文标题】Magento - 如何在 Magento 的 CMS 编辑器中允许某些标签(iframe、嵌入)?【英文标题】:Magento - How to allow certain tags (iframe, embed) in Magento's CMS editor? 【发布时间】:2011-07-07 00:25:50 【问题描述】:我想允许输入某些 html 标签,例如 iframe 并嵌入到 Magento 的 CMS 编辑器中。 Magento 不允许这些标签。
是否有我可以编辑以允许 iframe 和嵌入标签的模型或控制器?
【问题讨论】:
只是指出,编辑器是 tinyMCE,可能已经有控制允许元素的选项。我已将此问题标记为这样,以便其他人可以提供更好的帮助。 【参考方案1】:查看这个文件:js/mage/adminhtml/wysiwyg/tiny_mce/setup.js
找到这段代码:
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,
并在其后添加:
extended_valid_elements : 'iframe[src|style|width|height|scrolling|marginwidth|marginheight|frameborder],style,script',
这是一个简单的逗号分隔的标签列表。
【讨论】:
这不适用于 Magento EE 1.13;还有什么要考虑的吗?【参考方案2】:Josh 是正确的,我添加了这一行以接受“在 Faceb 上找到我们...”-iframe:
extended_valid_elements : 'iframe[src|style|width|height|scrolling|marginwidth|marginheight|frameborder|allowTransparency],style,script',
它在自动生成的 FB-iframe 中有一个额外的属性。
【讨论】:
【参考方案3】:在编辑 CMS 页面时,您可以切换到 html 视图。
按下html按钮
您可以在 html 中将 iframe 添加到页面上
【讨论】:
这不会启用任何额外的 HTML 标记 - 通过新的编辑和切换到 HTML 编辑模式,它已被删除。 @tomis 我在回答这个问题时正在使用 magentogo。我不太喜欢它,没有 ftp,因此无法完全控制网站。我发现在 cms 中切换到 html 模式是一个很好的解决方法,因为没有 ftp 明白。顺便说一句,我讨厌 Magento 以及所有希望我在里面做任何事情的客户......以上是关于Magento - 如何在 Magento 的 CMS 编辑器中允许某些标签(iframe、嵌入)?的主要内容,如果未能解决你的问题,请参考以下文章
Magento:如何在magento中发送带有附件的联系表电子邮件?