Hello
When I want to create a new product I only have "Simple Product" available in the product type select box. I think it's the previous web agency who developped the site who did this hack. I need now to create other product type. Do anyone has an idea where I can set the other options back?
Thank you for your help.
/app/code/core/Mage/Catalog/etc/config.xml
I would check in that file; (this file controls what methods are available)
Should have a code such as: ( check to see if its there, or commented out )
<catalog> <product> <type> <simple translate="label" module="catalog"> <label>Simple Product</label> <model>catalog/product_type_simple</model> <composite>0</composite> <index_priority>10</index_priority> </simple> <grouped translate="label" module="catalog"> <label>Grouped Product</label> <model>catalog/product_type_grouped</model> <price_model>catalog/product_type_grouped_price</price_model> <composite>1</composite> <allow_product_types> <simple/> <virtual/> </allow_product_types> <index_priority>50</index_priority> <price_indexer>catalog/product_indexer_price_grouped</price_indexer> </grouped> <configurable translate="label" module="catalog"> <label>Configurable Product</label> <model>catalog/product_type_configurable</model> <price_model>catalog/product_type_configurable_price</price_model> <composite>1</composite> <allow_product_types> <simple/> <virtual/> </allow_product_types> <index_priority>30</index_priority> <price_indexer>catalog/product_indexer_price_configurable</price_indexer> </configurable> <virtual translate="label" module="catalog"> <label>Virtual Product</label> <model>catalog/product_type_virtual</model> <composite>0</composite> <index_priority>20</index_priority> </virtual> </type>