0
喜歡在主題我想添加自定義下拉產品屬性的選項和他們的位置編程,所以我將能夠實現像附加圖像列表。如何以編程方式添加具有選項及其職位的自定義下拉產品屬性?
喜歡在主題我想添加自定義下拉產品屬性的選項和他們的位置編程,所以我將能夠實現像附加圖像列表。如何以編程方式添加具有選項及其職位的自定義下拉產品屬性?
您可以使用像你的安裝腳本以下。
$installer->addAttribute('catalog_product', "shirt_size", array(
'type' => 'int',
'input' => 'select',
'label' => 'Size',
'source' => '',
'sort_order' => 1000,
'required' => false,
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
'backend' => 'eav/entity_attribute_backend_array',
'option' => array (
'values' => array(
0 => 'Small',
1 => 'Medium',
2 => 'Large',
)
),
));
請檢查http://magento.stackexchange.com/questions/5190/upgrade-script-create-new-select-attribute-with-options –