在我的magento网站上,我添加了价格为0.00的产品数量。
现在产品的价格为0.00美元。
所以我希望将价格显示为not mentioned
而不是$0.00
。
我该怎么做?
price.phtml我需要为此写出什么条件?
我的条件是:
if price == 0.00 display the text 'not mentioned'
答案 0 :(得分:2)
试试这个。
<?php
if ((int)$this->getPrice()){
echo $this->getPrice();
}else {
echo "not mentioned";
}
?>
如果我错了,请纠正我。
^^