检查magento产品价格的其他条件

时间:2012-08-04 05:18:44

标签: magento

在我的magento网站上,我添加了价格为0.00的产品数量。

现在产品的价格为0.00美元。

所以我希望将价格显示为not mentioned而不是$0.00

我该怎么做?

price.phtml我需要为此写出什么条件?

我的条件是:

if price == 0.00 display the text 'not mentioned'

1 个答案:

答案 0 :(得分:2)

试试这个。

    <?php 
        if ((int)$this->getPrice()){
            echo $this->getPrice();
        }else {
            echo "not mentioned";
        } 
    ?>
如果我错了,请纠正我。

^^

相关问题