在扩展中,我在 catalog_product_view 页面上获得了产品集合,如下所示:
if (!$product = Mage::registry('product')) {
return new Varien_Data_Collection();
}
$category = new Mage_Catalog_Model_Category();
$category->load($product->getCategoryId());
$collection = $category->getProductCollection();
以及如何向此集合添加其他属性?
例如我不能得到这样的东西
$collection->addAttributeToSelect('manufacturer');
我希望通过代码添加一些属性(不是id,因为这可能是布局中添加的不同属性),然后按此属性对数据进行分组
谢谢