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?
Why not give this a try...
Mage::helper('core')->currency($pr->getPrice());
It gives you a currency symbol too.
Mage::helper('core')->currency($_product->getFinalPrice(),true,false);
this i did in Magento 1.7.0.2
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With