gpt4 book ai didi

Magento 模块设置 - 将产品属性更改为不需要

转载 作者:行者123 更新时间:2023-12-03 04:59:07 26 4
gpt4 key购买 nike

如何在模块安装过程中更改 eav 属性属性。

具体来说,我想将产品属性从“必需”更改为“不需要”。

我目前正在模块设置中的 getDefaultEntities 调用中合并更新的产品属性,但它给出了奇怪的结果。

例如:

public function getDefaultEntities()
{
return array(
'catalog_product' => array(
'entity_attribute_collection' => 'catalog/product_attribute_collection',
'attribute_model' => 'catalog/resource_eav_attribute',
'table' => 'catalog/product',
'entity_model' => 'catalog/product',
'additional_attribute_table' => 'catalog/eav_attribute',
'attributes' => array(
'short_description' => array('required'=> false)
)
)
);

}

导致 Short_description 字段丢失其前端标签

最佳答案

/* @var $installer Mage_Catalog_Model_Resource_Setup */
$installer->updateAttribute('catalog_product','short_description','is_required',0);

关于Magento 模块设置 - 将产品属性更改为不需要,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10420199/

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