My quantity discounts module has been posted in

http://www.zen-cart.com/index.php?ma...roducts_id=235

You may discount by item, by category or by total items in cart, in either percentages or currency units. Up to five discount levels are provided. A link is given on the checkout page to show the customer how the discount was calculated.

Please follow up here for support.

Thanks,
Scott (swguy)

PS> One bug has been found already; for those who are using discount by total items in cart, please make this change:

change l. 149-151 from

if ($count < $this->total_level_1)
continue;
$disc_amount = $this->total_discount_1;

to

if ($count < $this->total_level_1)
$disc_amount = 0;
else
$disc_amount = $this->total_discount_1;