Still see "Sorry, there are currently no Quantity Discounts"
I just successfully loaded this mod and all is working, except I still see "Sorry, there are currently no Quantity Discounts" after editing the promo page in the define_pages editor. I do have a discount setup, using your mod, based on % of the total purchase. Am I missing something?
Thanks for a great mod and I'll make a donation.
Jack
Zen Cart v. 1.3.8
Re: Quantity Discounts for 1.3
Hmmm...
./includes/modules/pages/quantitydiscounts_promo/header_php.php
has not been installed? Perhaps Quantity Discounts isn't installed under Admin->Modules->Order Total?
Re: Quantity Discounts for 1.3
Those are installed.
The discount is computed on the Step 2 of 3 page, but I am referring to the promo page with the link on the sidebox. The page that is editable from the define_pages editor, where the discount is explained. I temporarily took it out of the php file for now, but activating the mod doesn't automatically do so.
Re: Quantity Discounts for 1.3
Hi swguy,
I've been having some problems with the way that ZC is calculating the tax percentage on orders. It appears to have been cleared up for the discount coupon module, but not for the Quantity Discount one.
When:
Include Tax
true
Re-calculate Tax
None
Sub-Total: £100.00
Free Shipping: £0.00
Quantity Discount (10%) :-£10.00
Included VAT @ 15%:£13.04 (incorrect)
Total:£90.00
When:
Include Tax
false
Re-calculate Tax
Standard
Sub-Total: £100.00
Free Shipping: £0.00
Quantity Discount (10%) :-£8.70
Included VAT @ 15%:£11.73
Total:£89.99
Any help on this would be much appreciated.
Moved category - stopped working!
Please help?
I moved the category I used QD for up to top level, and then the mod stopped working altogether.
I tried moving the category back, and I've tried making a new category - nothing works. :no:
What to do?
http://www.hjemmemamma.com/nettbutikk
Re: Moved category - stopped working!
Never mind, it just magically started working again, I've no idea why... :)
Re: Quantity Discounts for 1.3
Quote:
Originally Posted by
JackA
Those are installed.
The discount is computed on the Step 2 of 3 page, but I am referring to the promo page with the link on the sidebox. The page that is editable from the define_pages editor, where the discount is explained. I temporarily took it out of the php file for now, but activating the mod doesn't automatically do so.
I have this same problem. However, my discounts are special discounts defined in the ot_quantity_discount.php file.
Shouldn't these discount show on the discount promo page?
Re: Quantity Discounts for 1.3
Quote:
Originally Posted by
shocker
I have this same problem. However, my discounts are special discounts defined in the ot_quantity_discount.php file.
Shouldn't these discount show on the discount promo page?
The discount promo page just shows the settings you have for QD in admin. If you've done special things in ot_quantity_discount.php, you need to edit the define page for the promo page and add some text.
I can't reverse engineer your mods and describe them for your customers. :)
Re: Quantity Discounts for 1.3
Quote:
Originally Posted by
swguy
The discount promo page just shows the settings you have for QD in admin. If you've done special things in ot_quantity_discount.php, you need to edit the define page for the promo page and add some text.
That kind of makes sense. I just wanted to be sure the mod was working properly.
Just a note: the following documentation is incorrect when it states:
Code:
Q: I only want discounts applied to items in category 11. How do I do this?
A: Update the function exclude_category() in includes/modules/order_total/ot_quantity_discount.php as follows:
function exclude_category($category) {
switch($category) {
case 11:
return false;
}
return true;
}
Q: I don't want discounts applied to items in category 7. How do I do this?
A: Update the function exclude_category() in includes/modules/order_total/ot_quantity_discount.php as follows:
function exclude_category($category) {
switch($category) {
case 7:
return true;
}
return false;
}
Please forgive me if I'm not understanding something.
Re: Quantity Discounts for 1.3
Quote:
Originally Posted by
shocker
Just a note: the following documentation is incorrect ...
The documentation is not incorrect. This is how it works. If it's not working for you, you have one of the category issues which I documented on this page.
http://www.thatsoftwareguy.com/zenca...ry_issues.html