如何设置magento购物车的最低数量?

时间:2012-08-22 18:08:25

标签: magento

我想在我的magento网站中设置最低数量...

Magento配置允许我设置每件产品的最小数量..但我想设置每个订单的最小数量..

我的意思是我的客户可以 混合他/她想要达到的最低数量的产品..

PS:我发现a thread in magento forums解释了如何设置最低订单金额。任何人都可以帮我修改此代码以获得最低数量吗?谢谢

1 个答案:

答案 0 :(得分:4)

有很多方法可以做到这一点,你可以去app \ design \ frontend \ yourstore \ 2012 \ template \ checkout \ onepage \ link.phtml或你的link.phtml你正在使用的那个。尝试删除代码并查看结帐按钮是否缺失,如果缺少,则说明您在正确的位置。 所以,有这个代码(全部改变):

<?php if ($this->isPossibleOnepageCheckout()):?>
    <?php if(Mage::helper('checkout/cart')->getCart()->getItemsQty() >= $minimunQuantityYouWant):?>//this code is ours
        <button type="button" title="<?php echo $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:?>//this code is ours
        Type msg here, like "You need minimum x items to finish."//this code is ours
    <?php endif;?>//this code is ours
<?php endif?>

这可以解决您的问题。