6

我尝试修改magento 1.7产品描述以默认显示所见即所得编辑器,而无需用户单击“所见即所得编辑器”按钮,但我找不到要编辑的代码,任何人都可以在这里给出一些提示吗?

4

3 回答 3

1

我确定 Magento 管理员中有一个选项:

管理 -> 系统 -> 配置 -> 内容管理

于 2012-09-17T13:43:03.290 回答
0

我相信安德鲁的回答应该是正确的。Magento 表单应该检查是否启用了所见即所得。

Mage::getSingleton('cms/wysiwyg_config')->isEnabled()

这只是检查您正在使用先前发布的答案更改的设置:

管理 -> 系统 -> 配置 -> 内容管理

默认情况下,这将显示漂亮的界面,而不是强制弹出或操作来启用它。

于 2013-04-07T20:55:39.773 回答
0

这个问题的答案最初由Nikitas发布在这里: https ://stackoverflow.com/a/20307722/3254362

为了简单起见,我在这里复制答案...


经过一番研究,我发现了它。

1)将此代码放在您希望编辑器直接出现的.phtml文件中。

2) 在代码的第 6 行,您可以看到elements: "short_description". 您可以"short_description"使用所需的元素 ID 进行更改。您可以添加多个元素 ID,以逗号分隔且不包含空格。

示例:我输入此代码是app/design/adminhtml/default/default/template/catalog/product/edit.phtml因为我希望编辑器在我编辑产品描述、简短描述等时直接出现。

编码:

<script type="text/javascript">
window.onload=function()
{
   tinyMCE.init({
    mode : "exact",
    elements: "short_description",
    theme : "advanced",
    plugins : "inlinepopups,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras",
    theme_advanced_buttons1 : "newdocument,|,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,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
    theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
    theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,|,visualchars,nonbreaking",
    theme_advanced_toolbar_location : "top",
    theme_advanced_toolbar_align : "left",
    theme_advanced_path_location : "bottom",
    extended_valid_elements : "a[name|href|target|title|onclick],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name],hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]",
    theme_advanced_resize_horizontal : 'true',
    theme_advanced_resizing : 'true',
    apply_source_formatting : 'true',
    convert_urls : 'false',
    force_br_newlines : 'true',
    doctype : '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">'

  });
};
</script>
于 2016-09-23T20:54:06.250 回答