如何在不使用magento优惠券代码的情况下限制客户购买产品?

时间:2016-04-29 12:04:40

标签: magento module

我想在结帐页面保留强制性优惠券代码。我正在使用aw_oncestepcheckout页面模块。

  • 我不想让客户在没有输入优惠券代码的情况下购买产品并应用优惠券代码。因此,客户必须首先应用优惠券代码,而不是购买产品。

  • 在结帐页面中,我添加了优惠券代码功能。它工作正常。

  • 我使用的是magento 1.9.2.4版。

您能否帮我应用此功能。

由于 Dhvanit

1 个答案:

答案 0 :(得分:0)

您可以通过编辑

来停用继续结帐按钮
  

项目/应用/设计/前端/默认/ yourtheme /模板/结帐/ onepage / link.phtml

这样的文件。

<?php if ($this->isPossibleOnepageCheckout()):?>
<?php if(!empty($couponCode = Mage::getSingleton('checkout/session')
             ->getQuote()
             ->getCouponCode())){?>
    <button type="button" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Proceed to Checkout')) ?>" class="button btn-proceed-checkout btn-checkout<?php if ($this->isDisabled()):?> no-checkout<?php endif; ?>"<?php if ($this->isDisabled()):?> disabled="disabled"<?php endif; ?> onclick="window.location='<?php echo $this->getCheckoutUrl() ?>';"><span><span><?php echo $this->__('Proceed to Checkout') ?></span></span></button>

<?php } else{

    echo "apply coupon first";

    }?>

<?php endif?>