我想在Catalog -> Manage product -> General
标签的管理端添加created_at字段。
应该更新。请帮帮我。
提前致谢。
答案 0 :(得分:0)
您无法在Catalog -> Manage Product -> General
上添加created_at,因为它是magento默认产品属性。您可以选择显示不同的属性名称,它将显示在“常规”选项卡上。
答案 1 :(得分:0)
在模块的安装文件中创建自己的属性。并使用模型Mage_Eav_Model_Entity_Attribute_Backend_Time_Created。在这种情况下,您的属性将使用create_at属性的数据。
试试这段代码:
$installer->addAttribute(
Mage_Catalog_Model_Product::ENTITY,
'go_live_date',
array(
'type' => 'datetime',
'input' => 'datetime',
'label' => 'Date of Creation',
'sort_order' => 1000,
'required' => false,
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
'backend' => 'eav/entity_attribute_backend_time_created'
)
);