Add categories column to the product grid in Magento admin

后端 未结 5 1331
梦如初夏
梦如初夏 2021-02-02 00:19

I\'m trying to add a category column to the product grid. I\'ve modified Mage_Adminhtml_Block_Catalog_Product_Grid. Added the following to _prepareCollection<

5条回答
  •  情话喂你
    2021-02-02 00:54

    if you just want to add the category (not the category path) and if the product has only one category, add this to the collection-setup:

    $collection->joinAttribute('catname','catalog_category/name','category_ids',null,'left');
    

提交回复
热议问题