作为html实体的Magento希腊字符

作为html实体的Magento希腊字符,html,magento,editor,wysiwyg,Html,Magento,Editor,Wysiwyg,我正在构建一个Magento站点,WYSIWYG编辑器和希腊字符出现问题,它们显示为html实体 如果我写: Ευχαριστούμε 我得到: &Epsilon&上升&迟&阿尔法&rho&物联网&西格玛&头&奥米克龙;ύ&穆&ε 而不是: <p>Ευχαριστούμε</p> Εχαρστμε 有什么办法可以解决这个问题吗 谢谢:)如果我没记错的话,我记得不久前我为中国符号做过这件事。我做了一些研究,但它似乎仍然有效,所以我提供了我的代码 TinyMCE的配置

我正在构建一个Magento站点,WYSIWYG编辑器和希腊字符出现问题,它们显示为html实体

如果我写:

Ευχαριστούμε
我得到:
&Epsilon&上升&迟&阿尔法&rho&物联网&西格玛&头&奥米克龙;ύ&穆&ε

而不是:

<p>Ευχαριστούμε</p>
Εχαρστμε

有什么办法可以解决这个问题吗


谢谢:)

如果我没记错的话,我记得不久前我为中国符号做过这件事。我做了一些研究,但它似乎仍然有效,所以我提供了我的代码

TinyMCE的配置文件位于此处:
[Magentorootdir]/js/mage/adminhtml/wysiwyg/tiny_mce/setup.js
并添加以下行
实体编码:“raw”
,如下所示

var设置={
模式:“html5”,
实体_编码:“原始”//新行
模式:(模式!=未定义?模式:“无”),
元素:this.id,
主题:"先进",,
插件:插件,
theme_advanced_按钮1:magentoPlugins+'magentowidget,粗体,斜体,下划线,删除线,|,左对齐,居中对齐,右对齐,全对齐,|,样式选择,格式选择,字体选择,字体大小选择',
主题_高级_按钮2:'剪切、复制、粘贴、粘贴文本、粘贴字、|、搜索、替换、|、bullist、numlist、|、outdent、indent、blockquote、|、撤消、重做、|、链接、取消链接、锚定、图像、清理、帮助、代码、|、前色、后色',
主题|高级|按钮3:'tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,iespell,media,advhr,|,ltr,rtl,|,全屏',
theme_advanced_按钮4:'插入层,向前移动,向后移动,绝对,|,styleprops,|,引用,缩写,首字母缩写,del,ins,attribs,|,visualchars,非中断,分页符',
主题\高级\工具栏\位置:'顶部',
主题\u高级\u工具栏\u对齐:“左”,
主题\高级\状态栏\位置:'底部',
主题\u高级\u大小调整:正确,
转换URL:false,
相对URL:false,
content\u css:this.config.content\u css,
自定义\u popup\u css:this.config.popup\u css,
magentowidget\u url:this.config.widget\u窗口\u url,
MagentoPluginOptions:MagentoPluginOptions,
doctype:“”,
文件可在此处找到:

谢谢,它起作用了。请注意,结尾需要一个逗号以及实体编码:“raw”,//New Line是的,我必须进行测试,当我在这里发表评论时,我不小心将其删除了。很抱歉。更新了邮件。请记住,这将在升级时删除。但是,我认为有一种方法可以在模块中进行此修改。我不喜欢编辑核心类型的文件,但也许其他开发人员可以对此进行说明。
    var settings = {
        schema : 'html5',
        entity_encoding : "raw",//New Line
        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,
        convert_urls : false,
        relative_urls : false,
        content_css: this.config.content_css,
        custom_popup_css: this.config.popup_css,
        magentowidget_url: this.config.widget_window_url,
        magentoPluginsOptions: magentoPluginsOptions,
        doctype : '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">',