1

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

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

所以我想显示价格not mentioned而不是$0.00

我怎样才能做到这一点?

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

我的条件是:

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

1 回答 1

1

尝试这个。

    <?php 
        if ((int)$this->getPrice()){
            echo $this->getPrice();
        }else {
            echo "not mentioned";
        } 
    ?>

如果我错了,请纠正我。

^^

于 2012-08-04T06:50:33.180 回答