如果产品价格等于零'0',我需要更换或隐藏产品列表页面上的添加到购物车按钮。
就像这里:http://www.lighting-furniture-design.com/luxury-lighting/ceiling-suspensions/deep-sky-2565.html
我的演示网站位于:http://www.sllv2.lighting-design-led.com/luminaire-de-luxe.html
请帮帮我。
由于
答案 0 :(得分:1)
如果你的添加到购物车按钮
,你可以包装以下内容 <?php if ($_product->getFinalPrice() == 0) : ?>
<h2>On demand</h2>
<?php else: ?>
// Your add to cart button here
<?php endif; ?>
答案 1 :(得分:1)
如果您想要替换botton的文本,当价格为零时。复制主题中的addtocart.phtml文件。将buttonTitle更改为下方。它会检查价格,因此您可以更改文本。
<?php $buttonTitle = ( ($_product->getFinalPrice() > 0) ?
Mage::helper('core')->quoteEscape($this->__('Add to Cart')) :
"your text" );
?>