Magento - add media gallery attribute to product flat table

前端 未结 2 1480
滥情空心
滥情空心 2021-01-27 07:59

How do I add a \'media_gallery\" attribute type to products flat table, so that it can be used in product listing?

2条回答
  •  面向向阳花
    2021-01-27 08:23

    To change it programmatically, you could do.

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

    Then reindex.

提交回复
热议问题