doutu1889 2014-10-21 17:05
浏览 42
已采纳

在Opencart 1.5.6.4中将批量折扣选项添加到购物车

Just wondering if there is a way that I can add discounts to the shopping cart in Opencart.

Basically im wanting customers to be able to select an option, i,e size, then add bulk amounts to the shopping cart. This would then add say 1000 of this item directly to the shopping cart. Im trying to get something like this:

Buy 1000 or more for only £5.00 per unit [Add to cart]

Buy 2000 or more for only £4.50 per unit [Add to cart]

Here is my code so far, unfortunatly Im not sure how to get this working correctly so any help would be great.

Thanks!

<?php if ($discounts) { ?>
<br />
<div class="discount">
  <?php foreach ($discounts as $discount) { ?>
  <div class="discount-item">
  <h3>Buy <?php echo $discount['quantity']; ?> or more for only <?php echo $discount['price']; ?></h3>
  <a onClick="addToCart('<?php echo $product['product_id']; ?>');" class="button"><?php echo $button_cart; ?></a>
  </div>
  <?php } ?>
</div>
<?php } ?>
  • 写回答

1条回答 默认 最新

  • douli0531 2014-10-21 17:14
    关注

    It's unclear exactly what you're asking for. But if it's any help, the addToCart method that comes with the default template accepts an optional second field, which is the quantity. So you could do:

    <a onClick="addToCart('<?php echo $product['product_id']; ?>', <?php echo $discount['quantity']; ?>);" class="button"><?php echo $button_cart; ?></a>

    Edit for items with options:

    I'll assume you're on the product page, as you need to select the options somehow... now we could clone the whole function that submits the data to the cart. But I think this is easier to manage:

    First, change the link to look like this:

    <a class="buy-bulk" data-quantity="<?php echo $discount['quantity']; ?>" class="button"><?php echo $button_cart; ?></a>

    Then add the following near the bottom:

    <script type="text/javascript">
        $(document).ready(function() {
            $('.buy-bulk').on('click', function() {
                var quantity = $(this).data('quantity');
                // change the quantity
                $('input[name="quantity"]').val(quantity);
                // simulate a click on the "add to cart button"
                $('#button-cart').trigger('click');
            })
        });
    </script>
    

    NOTE: untested! :)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化