
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.
Bookmarks