1

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

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

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

PS:我在 magento 论坛中找到了一个帖子,它解释了如何设置最小订单量.. 谁能帮我修改此代码以获得最小数量?.. 谢谢

4

1 回答 1

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?>

这解决了你的问题。

于 2012-08-22T19:12:37.797 回答