Magento Price and Stock Availability No Longer Showing
Encountered an error in Magento when price and stock availability no longer displayed in product view using Hellowired template.
After upgrading to 1.5, prices would show in the catalogue and grid views but on the product view the price and stock availability was not showing.
Found a fix for simple products after files have changed between Magento 1.4 and 1.5, Template/catalog/product/view/type/ simple.phtl is now deprecated and default.phtml used instead. Older templates need to be changed:
- Located in /app/design/frontend/default/YOURTEMPLATE/layout
- You need to change all instances in the file catalog.XML that point to simple.phtml and make it read default.phtml
I only have one instance around line 285.
Change template=”catalog/product/view/type/simple.phtml”>
to template=”catalog/product/view/type/default.phtml”>
While this needs to be done it made no difference for me and the price was still not showing. Ah, the joys of Magento!
Hopefully the above will fix your issue. If it didn’t carry on reading.
After a lot of digging around comparing two different templates I found a fix.
In Hellowired there was a slight difference in a file so I changed \hellowired\template\catalog\product\view.phtml
- around line 61 <?php echo $this->getChildHtml(‘product_type_data’) ?>
- to: <?php echo $this->getChildHtml(‘product_type_data_side’) ?>
I have yet to figure out why but it does work.

