How can i get the product type(simplee,configurable/grouped ...) using product sku or id, i have loaded product collection and from that trying to prict type by

$_product->getTypeId()

But its not printing the product type. Please help me

Thanks

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

I think $_product->getTypeId() should work. If it doesn't then try $_product->getResource()->getTypeId()

Hope it helps.

link|improve this answer
Hi chapagain, sorry this process is under order reporting module and i guess thats the reason why i didnt get type_id. – Ela Mar 3 '11 at 12:37
And when i used "product_type" i am getting the result. Thanks Chapagain. – Ela Mar 3 '11 at 12:45
from your blog i used $collectionconfigurable = Mage::getResourceModel('catalog/product_collection') ->addAttributeToFilte‌​r('type_id', array('eq' => 'configurable')); but here i want all the sku's of its inner products. Please help me – Ela Mar 3 '11 at 12:52
@Ela, that is a completely different question. Maybe you should post it as another question so that it can be answered directly. – Joseph Mastey Mar 3 '11 at 15:18
1  
@Ela: You have product collection in order reporting module. So, I think you also have product ID over there. Then, you can load the product from product ID. After that, I think you should be able to get the product type. – chapagain Mar 3 '11 at 16:54
feedback

did you know that you can see whats inside an object by just performing print_r($_product->getData())

link|improve this answer
Hi Anton, yes i know how to debug in magento. print_r,var_dump,Zend_Debug::dump but am in order reporting module so thats the reason i didnt get the type_id. – Ela Mar 3 '11 at 12:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.