Re: Quantity Discounts for 1.3
The extra line in setup() which should have been deleted or commented out, as reported in post 67
Quote:
Originally Posted by
swguy
There is a small bug in version 1.4; please go to the bottom of the file and in the function
setup() comment out the call to add_extra_level_discount(). This was supposed to be
just an example and should be a comment.
has been fixed in version 1.5, which has just been installed in the downloads area. No other functional changes have been made in version 1.5; you do not need to upgrade as long as you have made this fix to version 1.4.
Thanks,
Scott
Re: Quantity Discounts for 1.3
swguy-
Please forgive me for not readin all 9 pages of the thread on your mod. Attribute it to fuzzy frum eye syndrome :shocking:
Does your mod have to be applied to every product in the store? In other words, if I want to have customers receive a $2.00 discount on any product in the store they buy over 1 regardless of what it is (for example dvd titles).
Say if all the dvds in the store are $13.00 (makes for an easier scenario). A customer buys 1 of title a for $13.00, then they buy 1 of title B, it then Goes in at $13.00 but with a discount of $2.00, then they buy one of item C, which goes in also at $13.00 with a discount of $2.00, etc.
So does your mod do that, and if so does it have to be entered on every product, or activated just once?
thank you,
betty
aka fuzzy eyes
Re: Quantity Discounts for 1.3
Download it and take a look at the help or look at the examples on my home page. You do not have to activate it on each product; it's very configurable. You can include or exclude products or categories in many ways.
Good luck,
Scott
Re: Quantity Discounts for 1.3
I have quantiy discounts set up per category or total number of items purchased basis..
Ok, why is the total on checkout step 2 of 3 different that the total in the side box Shopping cart [more].
Mark,
Re: Quantity Discounts for 1.3
Why are you showing the shopping cart sidebox on the checkout page?
But the answer to your question is that the shoping cart sidebox only
shows the subtotal from the shopping cart page, not all the other totals,
grossups and credits that you see on page 2.
Re: Quantity Discounts for 1.3
Thank you,
I will look into not showing the sidebox Shopping Cart [more] on checkout.
Mark,
Re: Quantity Discounts for 1.3
swguy, great mod its just what i was looking for. quick question though i need to have 12 discount levels i have read all the documentation in the package plus what is on your site. but i cant seem to figure out how to add more levels.
where and how do i add the extra levels. i saw the example at the bottom of ot_quantity_discount.php but im just not sure what to do, im kind of new to php.
thanks
Re: Quantity Discounts for 1.3
In setup() you will call
$this->add_extra_level_discount($quantity, $discount);
7 more times to get 12 levels.
Re: Quantity Discounts for 1.3
*L* that's all i just uncomment this line
$this->add_extra_level_discount(100, 50);
and add it 6 more times?
my mind is retarded, i always thing something is more complicated then it is it always turns out to be so much easier then i make it for myself.
thanks
Re: Quantity Discounts for 1.3
Quote:
Originally Posted by
bobbyt
*L* that's all i just uncomment this line
$this->add_extra_level_discount(100, 50);
and add it 6 more times?
Bingo! Adjust the quantities and discount amount to your requirements, and you're done. This also interoperates with the marketing text, so you should have no further changes.
Scott