Magento - 将媒体库属性添加到产品平台

时间:2012-04-02 10:12:23

标签: php magento

如何将“media_gallery”属性类型添加到产品平台,以便可以在产品列表中使用?

2 个答案:

答案 0 :(得分:1)

可以通过将“在产品列表中使用”定义为“是”来添加它们 完成此操作后,您需要重新索引Product Flat

编辑:请参阅解决方案以获得最终答案。

来源:Can I add other attributes to magento's flat product catalog table?

解决方案: Media Images not available in Magento’s product list? Media Images not available in Magento’s product list? - archive

答案 1 :(得分:0)

要以编程方式更改它,您可以这样做。

$setup = new Mage_Eav_Model_Entity_Setup('core_setup');
$setup->updateAttribute('catalog_product', '{field_code_here}', 'used_in_product_listing', 1);

然后重新索引。