Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

magento price getPrice() value

Tags:

php

magento

function getDescriptionHtml($tpl, $p){
    $out = "";
    $pr = $p["product"];

    if(Mage::getStoreConfig('featuredproducts/displayoptions/title') == 'description'){
        $out .= "<ins><h4>{$pr->getName()}</h4></ins>";
    }
    $out .= "<span class=\"description\"".
            (!Mage::getStoreConfig('featuredproducts/displayoptions/description') ?
                    "style=\"display:none;\""
                :
                    ""
            )
            .">{$p['description']}</span>";
    $out .= "<ins><div>".
            (Mage::getStoreConfig('featuredproducts/displayoptions/price') ?
                    "<span style=\"font-size:45px\">{$pr->getPrice()}</span>"
                :
                    ""
            )       
            ."".
            (Mage::getStoreConfig('featuredproducts/displayoptions/bnb') ?
                    "<div><button style=\"postion:relative;margin-left:80px;margin-top:140px\" class=\"form-button\" onclick=\"setLocation('{$p["url"]}')\"><span>{$tpl->__('Buy Now')}</span></button></div>"
                :
                    "")
            ."
            </div></ins>";
    return $out;        
}

Per the code shown, when I'm using $pr->getPrice() its output looks like 299.0000, but I want it to be like 299.00. How can I do this?

like image 258
webkul Avatar asked Sep 20 '09 11:09

webkul


2 Answers

Why not give this a try...

Mage::helper('core')->currency($pr->getPrice());

It gives you a currency symbol too.

like image 60
Alan Lapington Avatar answered Sep 22 '22 08:09

Alan Lapington


Mage::helper('core')->currency($_product->getFinalPrice(),true,false);
  • "true" for price format.
  • "false" for no html.

this i did in Magento 1.7.0.2

like image 44
R T Avatar answered Sep 23 '22 08:09

R T