gpt4 book ai didi

magento - 添加启用所见即所得的类别属性

转载 作者:行者123 更新时间:2023-12-04 02:50:26 25 4
gpt4 key购买 nike

我正在关注本教程: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,

但事实并非如此。

最佳答案

今天尝试完成相同的任务并通过 magento 代码搜索设法使用以下代码完成我的任务:

$productEntityTypeId = $installer->getEntityTypeId('catalog_product');
$installer->addAttribute($productEntityTypeId, 'some_text', array(
'group' => 'General',
'input' => 'textarea',
'type' => 'text',
'label' => 'Some Text',
'backend' => '',
'visible' => true,
'required' => false,
'visible_on_front' => true,
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
));
$installer->updateAttribute($productEntityTypeId, 'some_text', 'is_wysiwyg_enabled', 1);
$installer->updateAttribute($productEntityTypeId, 'some_text', 'is_html_allowed_on_front', 1);

关于magento - 添加启用所见即所得的类别属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15282668/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com