Change Product type in magento

Harshal Mahajan picture Harshal Mahajan · Sep 10, 2012 · Viewed 7.8k times · Source

I have two products and their type is "Grouped Product" now I want to change this products in to simple product. Is there any way to do so?

Some links says I have to change directly from database. I tried this but nothing changes. Is there any way to do it?

Answer

user1743741 picture user1743741 · Nov 27, 2012

If it's only 2 maybe you should just create 2 new products with same url and change the url of the old ones.

Alternatively you could do some programming.

Maybe start with this class Mage_Catalog_Model_Product_Type_Grouped. the public function getAssociatedProducts returns an array of associated products which you can simply sort through applying whatever logic before creating your new products.

You have to deal with store scope etc during this process but there's lots of tutorials.