Magento:如何在一页结帐页面上添加促销代码表单?
Magento: How to add promo code form on one page checkout page?
我想在 Magento 1.8 CE 的一页结帐页面上以编程方式添加促销代码表单。这必须添加到付款审核部分。
已将以下代码段添加到活动主题的 layout/checkout.xml
:
<block type="checkout/cart_coupon" name="checkout.cart.coupon" as="coupon" template="checkout/cart/coupon.phtml"/>
然后将以下 php 代码添加到 template/checkout/onepage.phtml
但是它不起作用,请帮助!
<?php echo $this->getChildHtml('coupon') ?>
在checkout.xml
布局文件中添加如下,
<block type="checkout/onepage_review_info" name="root" output="toHtml" template="checkout/onepage/review/info.phtml">
...
<block type="checkout/cart_coupon" name="checkout.cart.coupon" as="coupon" template="checkout/cart/coupon.phtml"/>
...
</block>
并将以下代码放入app/design/frontend/YOUR_PACKAGE/YOUR_THEME/template/checkout/onepage/review/info.phtml
<?php echo $this->getChildHtml('coupon') ?>
我想在 Magento 1.8 CE 的一页结帐页面上以编程方式添加促销代码表单。这必须添加到付款审核部分。
已将以下代码段添加到活动主题的 layout/checkout.xml
:
<block type="checkout/cart_coupon" name="checkout.cart.coupon" as="coupon" template="checkout/cart/coupon.phtml"/>
然后将以下 php 代码添加到 template/checkout/onepage.phtml
但是它不起作用,请帮助!
<?php echo $this->getChildHtml('coupon') ?>
在checkout.xml
布局文件中添加如下,
<block type="checkout/onepage_review_info" name="root" output="toHtml" template="checkout/onepage/review/info.phtml">
...
<block type="checkout/cart_coupon" name="checkout.cart.coupon" as="coupon" template="checkout/cart/coupon.phtml"/>
...
</block>
并将以下代码放入app/design/frontend/YOUR_PACKAGE/YOUR_THEME/template/checkout/onepage/review/info.phtml
<?php echo $this->getChildHtml('coupon') ?>