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'm trying to add product_type to my Magento Google Base output based on the product's categories, but I seem to be unable to. I have the following code:

// Get categories from  product to include as product_type
$categoryIds = $object->getCategoryIds();
foreach($categoryIds as $categoryId) {
    $category = Mage::getModel('catalog/category')->load($categoryId);
    $this->_setAttribute('product_type', $category->getName(), 'text' );
}

The issue is that it returns all of the categories, not just the ones the product is in. Anyone have a solution?

share|improve this question
This question is more appropriately asked in Stack Overflow. – Christopher Feb 15 '11 at 20:58

migrated from webmasters.stackexchange.com Feb 15 '11 at 21:40

2 Answers

Using the source link dropped by Rao above I actually found a better answer:

$product = Mage::getModel('catalog/product')->load($productId);

$cats = $product->getCategoryIds();
foreach ($cats as $category_id) {
    $_cat = Mage::getModel('catalog/category')->load($category_id) ;
    echo $_cat->getName();
} 
share|improve this answer
This is sort of the correct answer, but never got marked as correct. – ShaunOReilly Mar 29 '12 at 22:55
I am in search of the same.. but where i have to placed this code.. I which folder.. can u give me the path?? I want the list of categories in json format. how can i get this? – John grews Jan 6 at 5:07
2  
don'T do this, use the solution by Rao, this saves a lot SQL queries! – Fabian Blechschmidt Feb 8 at 18:05

This is utterly not tested..

//load the product

$product = Mage::getModel(’catalog/product’)->load($productId);

//load the categories of this product

$categoryCollection = $product->getCategoryCollection();

You can then loop through $categoryCollection like through an array.

source

share|improve this answer

Your Answer

 
discard

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