<?php
// assuming that you have known product object, $_product
//get product price snippet
echo
$this
->getPriceHtml(
$_product
, true);
//get $_product price
echo
$_product
->getPrice();
echo
number_format(
$_product
->getPrice(),
'2'
,
'.'
,
','
);
//get $_product special price
echo
$_product
->getSpecialPrice();
echo
number_format(
$_product
->getSpecialPrice(),
'2'
,
'.'
,
','
);
//get $_product final price
echo
$_prodcut
->getFinalPrice();
echo
number_format(
$_product
->getFinalPrice(),
'2'
,
'.'
,
','
);
//get $_product Msrp
echo
$_product
->getMsrp();
echo
number_format(
$_product
->getMsrp(),
'2'
,
'.'
,
','
);
?>
No comments:
Post a Comment
Note: only a member of this blog may post a comment.