Do you mean "Quantitiy Discounts version 2.0" ? Is it already downloadable ?
Olieve
Do you mean "Quantitiy Discounts version 2.0" ? Is it already downloadable ?
Olieve
No, I meant Zen Cart 2.0.
Scott C Wilson, That Software Guy, Plugin Moderator
Contributions: Quantity Discounts, Better Together, SMS on Sale, Gift Wrap at Checkout, and more.
Is there a way to disable quantity discount for wholesale users but not the discount set in quantity discount module but the discount set in product price manager?
Zen Cart™ Version: v1.3.8
Quantity Discounts Version: 1.10a
I want my first item to be $4.50.
I want every item after that to be $2.00.
What's the best way to do this?
This sort of tiered pricing is not supported in Quantity Discounts.
Scott C Wilson, That Software Guy, Plugin Moderator
Contributions: Quantity Discounts, Better Together, SMS on Sale, Gift Wrap at Checkout, and more.
I am using Zen 1.38a with 1.10a quantity discount mod.
I want to discount 2nd and 3rd products from the same category by 25% but not the first item in the cart.
I have got it to work by using the currency amount. My problem is I want to exclude other product id's.
I edited the function Product Exclusion in file ot_quantity_discount but it didn't work. It's in the custom folder. When I add the excluded product to cart it still shows discount for 2 products.
Here is what my ot_quantity_discount file looks like
// Add products you wish to exclude to this list.
// Go to Admin->Catalog->Categories/Products->[Your category]
// and look at the left hand side of the list to determine
// product id. Note that 99999 and 99998 are just given
// as examples.
function exclude_product($prid) {
$id = (int)$prid;
switch($id) {
case 3:
return false;
}
return true;
}
3 is the product id I want to exclude. Is this code correct?
I figured out how to get the discount correct but can't get the other products excluded.
Last edited by shelby89; 14 Mar 2010 at 12:37 AM. Reason: add more content
Thanks, Shawn
The statement
may be the problem. The file should be under includes/modules/order_total. These files cannot be overridden.It's in the custom folder.
Scott C Wilson, That Software Guy, Plugin Moderator
Contributions: Quantity Discounts, Better Together, SMS on Sale, Gift Wrap at Checkout, and more.
Does this module allow me to do "Buy 5 Get One Free" for a category? I have items of a few prices in a category. If my user buys 5, they get the lowest priced item free. Thanks. Christene
No, this kind of thing is not what Quantity Discounts does. Response by PM.
Scott C Wilson, That Software Guy, Plugin Moderator
Contributions: Quantity Discounts, Better Together, SMS on Sale, Gift Wrap at Checkout, and more.
Quantity Discounts 1.11 is now available. This version features another tax setting (Re-Calculate Tax = VAT) for tax included shops. If you do not run with Display Prices with Tax = true, you may skip this upgrade.
Scott C Wilson, That Software Guy, Plugin Moderator
Contributions: Quantity Discounts, Better Together, SMS on Sale, Gift Wrap at Checkout, and more.
Bookmarks