我正在关注本教程: http: //www.atwix.com/magento/add-category-attribute/ 一切正常,属性已添加到类别中,但字段下方没有 WYSIWYG 按钮。WYSIWYG 在系统 > 配置 > 内容管理中启用。
$this->startSetup();
$this->addAttribute('catalog_category', 'custom_att', array(
'group' => 'General',
'input' => 'textarea',
'type' => 'text',
'label' => 'My attribute',
'backend' => '',
'visible' => true,
'required' => false,
'wysiwyg_enabled' => true,
'visible_on_front' => true,
'is_html_allowed_on_front' => true,
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
));
$this->endSetup();
无论我尝试什么,我的属性都没有启用 WYSIWYG。任何人都可以帮忙吗?或者也许有一个解决方法?
编辑:我搜索了其他帖子,但都说这段代码应该添加所见即所得:
'wysiwyg_enabled' => true,
但事实并非如此。