我想知道如何以编程方式将Magento EAV属性添加到现有组。
任何人都可以使用安装或升级脚本共享一些添加属性的信息吗?
我已经按照一些教程但没有结果。
答案 0 :(得分:0)
Souf,有很多代码,可用 这里有一些链接
[http://stackoverflow.com/questions/10147847/creating-attribute-sets-and-attributes-programmatically][1]
[http://www.magentocommerce.com/wiki/5_-_modules_and_development/catalog/programmatically_adding_attributes_and_attribute_sets][1]
属性的某些升级
$installer = $this;
/* @var $installer Mage_Catalog_Model_Resource_Eav_Mysql4_Setup */
$installer->startSetup();
$installer->updateAttribute('catalog_product', 'price_view', 'used_in_product_listing', 1);
$installer->updateAttribute('catalog_product', 'shipment_type', 'used_in_product_listing', 1);
$installer->updateAttribute('catalog_product', 'weight_type', 'used_in_product_listing', 1);
$installer->endSetup();