Is there a way to make my shopping cart do price breaks. like i have a item for sale for 10.00 and if you buy 10 of them it goes down to $8.00 each instead of $100.00 each
Er.. that would depend on your coding.
if($quantity >= 10) { $cost = 8; } else { $cost = 10; } $item_total = $quantity * $cost;
I guess that would work but would require some extra scripting to pull viriables out of mysql to set that up. Ill look into it thanks.