Magento 将所见即所得添加到自定义前端表单

标签 magento

我正在编写一个模块,并且正在搜索如何将内置所见即所得编辑器添加到前端的文本区域。有可能的?有谁知道如何实现吗?

最佳答案

因此,我将其保留为最终解决方案,以防万一有人需要它:

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>

关于Magento 将所见即所得添加到自定义前端表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22218898/

相关文章:

php - 如何更改由 magento 中的 sendbox paypal 帐户生成的 "Facilititor Account Test Store"

Magento2 为接口(interface)编写插件

mysql - Mysql结果集中的偏好

PHP:使用 Zend_Barcode 调整条形码的输出大小 | Magento 发票条形码

php - 将文件包含到命名空间中

Magento - 使用简单的 .phtml 模板创建模块

Magento 1.6 和产品

Magento 在付款后不捕获订单

php - Magento 编程 : Getting list of all Manufacturers and corresponding Manufacturer ID

magento - 有没有办法使用 Rest api 在 Magento 2 中获取特定类别的自定义过滤器?