Magento – Get Price Without Currency Symbol on One Page

price

I want to load the price without the currency symbol on one single page.
I load the price currently with this code:

<?php echo $this->getPriceHtml($_product, true) ?>

Thanks!

Best Answer

<?php echo $_product->getPrice() ?> 

should work if you have a product object in $product.

Related Topic