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