Magento 1.9 – No price.phtml in rwd/default/catalog/template/product

magento-1.9product

I want to display the old price (regular price without discount) without taxes, but at the moment the configuration from the backend shows only the special price in the right way.

I checked the rwd/default/catalog/template/product/view.phtml and the content is rendered by $this->getPriceHtml($_product);. As I understood, the content should be found in the price.phtml, but there is no such file. Where can I find the HTML of the displayed price in the product page?

Best Answer

The rwd package is supposed to have the file app/design/frontend/rwd/default/template/catalog/product/price.phtml. I don't know if you mispelled the titled, but if you don't have it for some reason, it will fall back to app/design/frontend/default/default theme.

Related Topic