Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need on product view page to get all products from category separated by manufacturer.

I'm using code like this:

public function getProductList()
{
    /* @var $product Mage_Catalog_Model_Product */
    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(Mage::getSingleton('catalog/config')->getProductAttributes())
        ->addUrlRewrite($category->getId());
    $collection->setOrder('manufacturer', 'asc');

    return $collection->getSelect();

    // $collection->load();
    // return $collection;
}

And in this select I have only standart fields like entity_id, store_id, sku... and additional only manufacturer field. Why I'm not getting here additional product fields like name/size/etc. and how can I get them to be in collection, because it's not a good idea to load all this products separatly to get this data.

So in this example

$collection
   ->addAttributeToSelect(Mage::getSingleton('catalog/config')->getProductAttributes())
   ->addUrlRewrite($category->getId());

is ignored and only field from setOrder is added

Or may be I must do this in other way???

thanx.

Note: No flat structure used (I think with flat this would work fine, but we have many attributes and flat table can't be created)

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.