You can discount by dollars spent in tiers and you can exclude specific products or categories - but they have to be enumerated (12,13,15, etc.).
You can discount by dollars spent in tiers and you can exclude specific products or categories - but they have to be enumerated (12,13,15, etc.).
That Software Guy. My Store: Zen Cart Support
Available for hire - See my ad in Services
Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
Do you benefit from Zen Cart? Then please support the project.
is there any extension mode that offer discounts to certain groups only?
See PM.
That Software Guy. My Store: Zen Cart Support
Available for hire - See my ad in Services
Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
Do you benefit from Zen Cart? Then please support the project.
I need only to apply a currency discount level only to price group 'number one'. So I think it needs only an easy modification and not an additional complex mod.
Sub-Total not displaying correct.
When you make a purchase that qualifies for a discount the "Extended Price" is correct.
The next line "Quantity Discount" shows the correct discount amount in dollars.
The next line "Sub-Total" does not reflect the discount. Sub Total shows the above Extended price giving appearance quantity discount is not applied.
The Total Price. does show the correct amount.
It is important that the "Sub-Total" reflect the discount because when shipping internationally value of goods shipped customer may have to pay a tax on the value paid for the product which should be the Sub Total less discounts and shipping cost.
Could someone provide help in subtracting discount amount from extended price to = Sub-Total? see below example.
Products Model Tax Price (ex) Price (inc) Total (ex) Total (inc)
3 x EZorb Calcium Capsules 822392001225 $39.95 $39.95 $119.85 $119.85
Total Weight is 1 lbs. 11 oz.
Quantity Discount: -$8.39
Sub-Total: $119.85
Flat Rate (Best Way): $6.95
Total: $118.41
The subtotal is not a running value. You'd have to write code to get the display you're looking for; you can't just change the sort order.
That Software Guy. My Store: Zen Cart Support
Available for hire - See my ad in Services
Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
Do you benefit from Zen Cart? Then please support the project.
Is there a way to change the products_id to products_weight or products_sort_order?
function apply_special_item_discount($id, $count, &$disc_amount) {
switch($id) {
case 1:
if ($count > 1) {
$disc_amount = 15;
}
break;
case 2:
$disc_amount = 20;
break;
}
}
Thanks in advance :-)
That Software Guy. My Store: Zen Cart Support
Available for hire - See my ad in Services
Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
Do you benefit from Zen Cart? Then please support the project.
Bookmarks