Magento-1 Product – How to Show Product Price on Home Page

magento-1priceproduct

I installed my site and in theme that i use it for my website in home page i can show latest product but without price and i want to show price of each product in home page.

So i want to know what steps i should take to do this?

What things i should know for this? Should i know about writing modules?

Please tell me about the steps that i should take for it.

Best Answer

Simply <?php echo $this->getPriceHtml($_product, true, '-new') ?> in new.phtml file in template/catalog/product section.

Related Topic