【发布时间】:2012-04-02 10:12:22
【问题描述】:
如何将“media_gallery”属性类型添加到产品平面表中,以便在产品列表中使用?
【问题讨论】:
如何将“media_gallery”属性类型添加到产品平面表中,以便在产品列表中使用?
【问题讨论】:
可以通过将“用于产品列表”定义为“是”来添加它们 完成此操作后,您将需要重新索引产品平面
编辑:查看最终答案的解决方案。
来源: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
【讨论】:
要以编程方式更改它,您可以这样做。
$setup = new Mage_Eav_Model_Entity_Setup('core_setup');
$setup->updateAttribute('catalog_product', '{field_code_here}', 'used_in_product_listing', 1);
然后重新索引。
【讨论】: