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 に答える