function exclude_category($category) {
switch($category) {
case 107: //a category with only products under it
return true;
}
return false;
}
Printable View
function exclude_category($category) {
switch($category) {
case 107: //a category with only products under it
return true;
}
return false;
}
This works, but requires ZC 1.3.5 or better.
Also check "linked products" problem described in the help.
thats why then - not on 1.3.5, is there anything i can do to get round this, whats the difference here between 1.3.5 and earlier?
Please look in the downloads area at old versions. One is marked "1.3.5 and better only." Use the one before that.
scott
Tried the linke dproduct query also, it does return the correct master id.
No, it is needed. That's why it's there.
The difference is in 1.3.5, the cart started adding category to a key
data structure. You need to install this in your pre 1.3.5 env as long as it's > 1.3.0
If it's less than 1.3.0 this mod will prob. not work - it's a 1.3 mod.
Scott
ahh, well its less than 1.30! and the exisiting shopping_cart.php is totally different to the one in the download...
Take a look at the title of this thread. :)
Yes - seen that now! is there any alternative for older carts?
I need to discount 10% when you buy 5 of a product, but only apply this to some categories
Does anyone know how to show the quantity discount on the shopping cart page after adding products? At the moment, it only shows up during checkout (towards order confirmation page). Thanks.
PM me for details.
Scott
I'm wondering if there has been any progress on the tax calculations. Is there some file editing I can do?
Can you be more specific about what you mean by the tax calculations? What do you believe is wrong?
Scott
Oops, I spoke before doing my math.
I'm really putting this module & taxes to the test, but I know the taxes are set up right as they don't seem to be giving me a problem when quantity discount items are not selected.
In this purchase I have 1 book (GST tax applies only) and 2 CDs (GST & PST taxes apply).
The book is $15.00 with .90 tax ($15.90)
2 CDs are $14.99/each, minus $4.98 (qty disc.), equals $25.00 with 3.50 tax ($28.50)
$15.90 + $28.50 = $44.40
The first tax on the book is only coming through at .60 so the transaction totals $44.10
I've included a few screen shoots, for clarification.
Can someone tell me how using this category I can prodive discounts to categories
lets say a specific category A?
Thanks
Hmmm instead of discounting, the mod appears to be adding a percentage of the total price to the price (the price is going up not down). What did I do wrong?
[edit: nevermind, I just can't add :-p]
Hi
Using this module and getting errors in the tax (VAT @ 17.5%) calculations.
Admittedly its only 1p - 2p high as the order value moves into the £1000s, but customers will pick up on it!!!
Include Tax - False
Recalculate tax - Standard
Percentage
Total by Category
50 - 20%
100 - 30%
500 - 40%
1000 - 45%
5000 - 50%
Goods are valued at around £1.00 each
No Gift Certs. or Coupons installed.
Help please - going live soon and this needs to be sorted.
Thx Pa
Rounding is done at several stages, so this sort of thing will happen.
Scott
Yeah - I suspected it was to do with rounding.
Is your rounding always 'done up', or 'up or down' dependent upon the '.5' breakpoint?
The reason I ask is that when erroneus, the tax is always high. If the roundings were up and down, one would expect it to be correct sometimes, or even low occasionally.
Cheers
Pa
I would like to have discount pricing per item within different categories (based on currency). Each category has different quantity discounts that need to be applied. I have 6 categories that need to have discounts per item.
for example
Category A has 1000 products. Every product in the category has the same quantity discount pricing structure but the discount can not be combined between products within that category.
Category A product 1
0-49 = $0.25 each
50-99 =$0.23 each
100-199 = $0.20 each
200 -249 =$0.18
250 + = $0.15
Category B has say another 800 products that need discounts applied per item as well.
Category B product 1
0-99 = $0.25 each
100- 199- $0.23
200-249 = $0.21
250 - 499 = $0.18
500 + = $0.15
I know that ZC product pricing can do this but it means that I would have to apply the discount individually to all my 3000+ products. Does your module support this as I was unsure after reading the instructions. Any help appreciated thanks
You would have to write software to do this. PM me for details.
Scott
I installed the module per instructions. I then set the parameters in the (Modules, Order Total, ot_quantity_discount). It worked the first time, but after that, it stopped working. When it did work, during checkout on the last leg it showed the discount; it’s just not working now.
Also, I removed (not just disabled it) the module and reinstalled it. I’m using the latest ZC version and the most recent Quantity Discount module.
Do I need to do something else other than just install the module? I’m just getting started with creating a website with a shopping cart—I’m green to this experience. Any detailed instructions on this will be appreciated.
I do have the Zen Cart book, but I can't find anything in the book that provides info
Please advise.
The book only discusses the stock cart, not mods.
Are you sure you're putting enough things in your cart to trigger a discount? Otherwise I have no idea.
For test purpose I have the parameters set as follows:
Discount Unit: percentage
Discount Basis: Total Items in Cart
Discount Level 1: $11.00
Discount Amount: 80
My items cost $5.89 and above. When I put any amount above $11 in the shopping cart (i.e. $45 worth of product), it doesn't give a discount in any amount.
It worked the first time only.
Total items in cart should be 5, 10, 27, 34 or some other cardinal number, not $11. What you're trying to do (if you want thresholds like $11, $22, or whatever) would require more software. PM me for details.
Scott
hi,
Just to let you know we have decided to redo our quantity discounts based on category level (mixed products within category will qualify) so your module with be invaluable
Thanks for your help
Your input clarified how this module works. I put in the proper parameters and it's working as it should now, and it will do what I need it to do without futher programming--simple is good. Thanks!
justme
Will this module apply the discount to the prices in price manager? SaleMaker through admin does not so I am looking for something that will. Thank you.
It's completely separate from price manager - it's a different mechanism entirely.
I'm using Zen Cart 1.3.7, installed this order_total module - modified apply_special_category_discount() for the particular category I want it to apply a discount for, but it didn't work - I had set the module to do discounts by category.
So, I did some echos and found that $products[$i]['category'] was null, so I added the following subroutine to the calculate_deductions function right afteradd the following:Code:$products = $_SESSION['cart']->get_products();
$prod_list = array();
$prod_list_price = array();
$cat_list = array();
$cat_list_price = array();
$all_items = 0;
$cat_list_back = array();
$prod_list_back = array();
$all_items_price = 0;
for ($i=0, $n=sizeof($products); $i<$n; $i++) {
Now I get the quantity discount showing in the checkout page.Code:if ($products[$i]['category'] == '') {
$products[$i]['category'] = zen_get_products_category_id($products[$i]['id']);
}
Let me know if there's an easier fix!
Thanks,
Linda
If category is null, you have the dreaded :) Master Categories problem, likely caused by using Easy Populate. You can back up your database, then go to Admin -> Tools -> Store Manager, and click on "Reset ALL Products Master Categories ID".
Good luck,
Software Guy
Actually, I looked at(which returns the $products array), it does not return a category for the product, which makes it null.Code:$products = $_SESSION['cart']->get_products();
The shopping_cart class doesn't even mention master_categories_id. Here's the code from the shopping cart class:
Taking a look the the database shows that all products have a master_categories_id, so that's not the problem. I also have not used Easy Populate.Code:$products_array[] = array('id' => $products_id,
'name' => $products->fields['products_name'],
'model' => $products->fields['products_model'],
'image' => $products->fields['products_image'],
'price' => ($products->fields['product_is_free'] =='1' ? 0 : $products_price),
// 'quantity' => $this->contents[$products_id]['qty'],
'quantity' => $new_qty,
'weight' => $products->fields['products_weight'] + $this->attributes_weight($products_id),
// fix here
'final_price' => ($products_price + $this->attributes_price($products_id)),
'onetime_charges' => ($this->attributes_price_onetime_charges($products_id, $new_qty)),
'tax_class_id' => $products->fields['products_tax_class_id'],
'attributes' => (isset($this->contents[$products_id]['attributes']) ? $this->contents[$products_id]['attributes'] : ''),
'attributes_values' => (isset($this->contents[$products_id]['attributes_values']) ? $this->contents[$products_id]['attributes_values'] : ''),
'products_priced_by_attribute' => $products->fields['products_priced_by_attribute'],
'product_is_free' => $products->fields['product_is_free'],
'products_discount_type' => $products->fields['products_discount_type'],
'products_discount_type_from' => $products->fields['products_discount_type_from']);
Interesting - could it just be a change from the version of zen cart?
Thanks,
Linda
What you have posted looks like an old version. Re-download 1.3.7 and look again - line 1178 of shopping_cart.php should be
'category' => $products->fields['master_categories_id'],
It is true that in older versions of shopping_cart.php this field wasn't set; I used to compensate for that if you look back at Quantity Discounts version 1.2 and prior by including a customized copy of shopping_cart.php.
SoftwareGuy
Thanks,
You are so right! lol... interesting that the version tool in admin says it's 1.3.7, probably partly updated... I promise not to complain any more... about that anyway!
Thanks again,
Linda
You probably just had an old local change you forgot to update. It might be worth re-checking against a fresh download to be sure that's the only out of date file.
Good luck,
Scott
hi Softwareguy
how are you?
thanx for the this mod its really great to have it but i have one problem is that the mod don't work with the cart,, i did everything you mentioned in the read me file, and its installed correctly, i used discount Discount Basis
Total Items in Cart.
it do not show or calculate a discount with the cart, i have 1.3.7 zen cart
the Discount model appears in Order Total Modules correctly...
but not on the interface or in calculations...
what is the problem?
www.alsousbros.com
can you help in it?
regards
Are you exceeding the level 1 item count that you set in the admin panel? If you say level 1 is 5 items and you only bought 4, you will not see a discount.
by the way you can use this user to login my site
saher.alsous######################
gelgamish
don't worry this isn't my email password :D
regards
Please also check the FAQ. The most common error paths are documented there.
http://www.thatsoftwareguy.com/zenca...ounts.html#faq
swguy
what do u mean by level one?
i didn't change anything for this...
do u mean that t his is the solution?
Q: How can I tell if my master categories are set to 0?
A: To verify whether this is your problem, use the following query in a pmpMyAdmin SQL query window: select p.products_id, p.master_categories_id, s.products_id, s.categories_id
from products p, products_to_categories s
where p.products_id = s.products_id
and p.master_categories_id = 0;
Obviously if your tables have a prefix, you must include this (use "zen_products p, zen_products_to_categories s" if your prefix is "zen_" for instance).
Q: Oh great. I have that problem. How do I fix it?
A: Happily, there's a facility within Zen Cart to fix this problem. Back up your database, then go to Admin -> Tools -> Store Manager, and click on "Reset ALL Products Master Categories ID"
or do u mean the 5 levels in the discount level from 1 to 5...
i filled them all, with one additional level at the end...
u can see them in the about us page... despite it shows the percents i used but it dont work on them....
regards
You know
Buy 300 or more of any item, get 3% off
means, "buy 300 items' not 'spend $300' right? You are discounting by the total number of items in the cart not the total amount spent.
Yep, this was your problem. If you login to your cart now you'll see I put 300 icons in your cart, and you get the discount at checkout time.
Please help.
Your quanity discount was working fine. We are finished with the discounts and I removed them from the product price manager. The discount is still showing??
http://myfavoritenewmexicofoods.com/shoppingcart
Thanks
Blain
Products Price Manager (or what I call "native" Quantity Discounts) and the Quantity Discounts Contribution are two different things. The contribution is turned off through Admin->Modules->Order Totals.
Thank You
Question: I am trying marketing tool, but when i edit tpl_product_info_display.php, i get this message:
Fatal error: Call to undefined function: get_discount_parms() in /home/supermaj/public_html/includes/templates/trublu/templates/tpl_product_info_display.php on line 251
I tried both your site and forums but couldn't find an answer. Can you help me or point to some link?
Also, i would like some categories to be excluded, but i don't know where to place this code:
function exclude_category($category) {
switch($category) {
case 7:
return true;
}
return false;
}
Will it give me the same text of undefined function?
ok, i got it about excluding categories, it is editing of includes/modules/order_total/ot_quantity_discount.php
But i am still having problems with marketing tool... Help?
If you are using exclude_categories or other exits, you'll need to write your own marketing description, so don't bother with using get_discount_parms().
I will check it. But now, i have another problem:
When i give discount, it is either in percentage or a fixed amount. Is there a way that when someone takes 100 units, he will have $0.50 lower price than basic price of unit?
Example: t-shirt costs $3
He orders 99, no discount
He orders 100, discount is 100 * $0.50 = $50
The popup window saying how the discount is priced would be something like:
Total 100 units x $0.50 per unit = $50
It is pretty long story why i need it, but the basic is that i have fixed profit of $1 per t-shirt, no matter the price of it.
btw, great preview module, it was worth the money. Can 'discount price' be clicked on preview page and not only in step 3?
See your PM.
Scott
Hi there,
Is it possible with your mod, to do the following?
Min Quantity 100, Unit 25
Product Price : $1
Buy 100 =$100
Quantity discount level 125 units+
First 100 still at $1
Additional 25 units 5% off
So if I buy 125, I pay $100 + 25x$0.95 = $123.75
If I buy 200, I pay $100 + 100x$0.95 = $195
Not only that, the same or different discount rate applies to some of the attributes?
Thanks...
You would have to do a bunch of customization. PM me for details.
Hi there, is it possible to only allow the discount to be applied to products which have the same attributes selected? (the website I'm working on at the moment sells photos and wants to give a discount if any two photos (each of which is a different product) where the same size attributes are selected. Cheers.
You would have to do a bunch of customization to make it work this way.
Am more than happy to do a load of customisation to it, but any pointers would be great, i'm ok with PHP but any pointers as to where to start within files and so-on would be very much appreciated!
Quantity DIscounts 1.6 has just been released. The following issues were resolved:
- get_discounted_prices() failed to reflect the discounts of sales and specials.
- Admin labels for "Level" and "Amount" were inconsistent. (To get this fix, you must remove and re-install Quantity Discounts after installing the new files).
Unlike Better Together, Quantity Discounts does not have built in marketing text; you must select a format that you like from the help (or build your own) and manually insert it into the product info template if you wish to show off your quantity discounts. This was done because different people wanted different formats. Several examples of doing this are provided in
http://www.thatsoftwareguy.com/zenca...html#marketing
Thank you,
Software Guy
This is a very nice mod, sucks you have ot charge for an extention that acutally shows our customers what there discount is
Thank you! Very nice mod.
I'm not sure I can do what I need to do. I would like to give a discount when purchasing 6 items from category one, and a different discount when purchasing 6 items from any category. Is that possible? Also is there any way to have the discount taken after coupons have been used. Considering most discount coupons come and go, it's difficult setting quantity discounts when coupons are used unless the quantity discounts are changed everytime a new coupons is activated.
Thanks again for an otherwise great mod, and any support you can provide.
Make your "any category" discounts the ones you set in the admin panel, and for category 1, use the apply_special_category_discount() exit. See the help for examples.
Not really. Coupons are applied to the order; quantity discounts are provided to products within the order.Quote:
Also is there any way to have the discount taken after coupons have been used.
Scott
Hi,
Great mod, thanks!
Is it not possible to add such an option that this does not do a universal discount on all items but we can choose which items should have a quantity discount?
I have chosen the per item discount but now nomatter what item when 10 of the same item is added to the cart they get the same percentage off. I would like to add the discount to specific items only.
Thanks in advance!
By help do you mean the readme? Where is the help file?
Thanks
Click my sig. Scroll down. Click Quantity Discounts.
Thanks much appreciated!
Okay, I've uploaded the folder "discount_1.6" to the root directory, but when I look in Modules->Order Total I don't see it.
Any suggestions?
Double check where the files landed. You need everything under discount_1.6 to be in the corresponding place under root. For instance, you should have /<root>/includes/modules/order_total/ot_quantity_discounts.php
Scott
That's what i thought, but the directions said upload the folder to root. Sorry for the blonde moment!
Okay, another question. I hope it's as easy as the last.
Is it possible to have different price breaks for different catagories?
Catagory A has buy 100 cat. A items, get 25% off
Catagory B has buy 50 different cat. B items, get $10. off
Catagory C = no discounts.
Yep. Click my signature, find the help and read about the user exits (apply_special_category_discounts is the one you seem to want).
Hi
I have installed this mod but I have a specific requirement and wondered of it is possible to do what I want using the following example:
I have the mod set to discount by category.
I am selling METAL products.
The METAL products consist of several different subcategories below one main category.
I wish to offer a 10% discount on purchase of 3 METAL products.
Is it possible to combine the products from each of the subcategories to achieve the 10 products needed for the discount.
In other words for example:
2xMetal Product 1
+
1xMetal Product 2
+
1xMetal Product 3
= 10% discount.
METAL TOP CAT
l
Metal Sub Cat A -> Metal Product 1, Metal Product 2, ...
l
Metal Sub Cat B -> Metal Product 3, Metal Product 4, ...
Is there a way I can do this with this mod please? I hope you can understand me!!! :)
Thanks
Rob
response by email.
Thank you - nothing arrived as of yet!
:)
Rob
My question is about importing quantity discounts from a flat file database.
In my source database I have a field that shows 3 quantity discount prices.
example:
1 or more = .76
3 or more = .46
6 or more = .34
the data entry in my source file for this example appears like this:
0.76:1:0.46:3:0.34:6
I have over 5,000 of these, how do I get them into the SQL database?
> I have over 5,000 of these, how do I get them into the SQL database?
If this is your discounting model, you don't want this contribution. You should use native quantity discounts and import your data using phpMyAdmin or perhaps just creating a .sql script from your data.
thanks - is there a quick and dirty way to explain how I might do that?
Yes. You post an ad in Commercial Help Wanted saying "subcontractor needed with data import experience and knowledge of built-in quantity discounting mechanism." Someone will respond and do this for you.
no need to be nasty, I was just looking for some info that might help me figure out how to do the data import.
The mod is.. simply not working for me. I've customized it to work w/ a certain category:
Set the discount to "total by category."Code:function exclude_product($id) {
switch($id) {
case 137:
case 99998:
return false;
}
return true;
}
I installed it following all the instructions, first removing the old group discount mod. The quantity discount is simply not showing up at the checkout page. What did I possibly do wrong?
You said
but then you showed the exclude_product function.Quote:
I've customized it to work w/ a certain category:
The function exclude_product() excludes products not categories.
What are your levels in admin? Are you running ZC 1.3.5 or higher? Did you read the FAQ about the possible root causes of category problems?
http://www.thatsoftwareguy.com/zenca...ounts.html#faq
It clearly says on your page that, if you want to apply the discounts to a certain category, you use this code:
which i thought made sense, since you switched the false and the true around.Code:function exclude_category($category) {
switch($category) {
case 11:
return false;
}
return true;
}
I am running ZC 1.3.7. My levels in admin:
http://i20.tinypic.com/63sqj7.jpg
Hi,
please help me with this one if you are familiar to the issue.
I installed the discount-mod and thought i set it up correct. But at checkout the values are not calculated right. The tax included should only be 20% of the total sum but its 10 SEK extra???
I have tried solving this several times but cant fix. please help me!
See attached image on checkout.
best regards,
Ola
www.blingofsweden.se
There are a bunch of knobs and switches for tax calculation, and they're not easy to understand. I explained some of them here:
http://www.thatsoftwareguy.com/zenca...sales_tax.html
The tax regime in some countries is so complicated that you have to write additional code; don't know if that's the case for Sweden or not.
hi there!
Thanks for putting in time. The page you pointed me to didn´t help me though. It seems to be a small number that is wrong somewhere but I have gone through all settings lots of times and cant find it. It calculates the values wrong at checkout. If I do one change so for ex. the 10% discount shows up correct there is an error somewhere else. For ex. how much tax there is included. And if the tax shows correct the discount doesnt.
This is my settings.
This module is installed
true[/B]
Sort Order
150[/B]
Include Tax
false
Re-calculate Tax
Standard
Discount Units
percentage
Discount Basis
Total Items in Cart
Discount Level 1
2
Discount Amount 1
10%
Display Prices with Taxtruehttp://www.blingofsweden.se/admin/images/icon_info.gif Display Prices with Tax in Admintruehttp://www.blingofsweden.se/admin/images/icon_info.gif Basis of Product TaxShippinghttp://www.blingofsweden.se/admin/images/icon_info.gif Basis of Shipping TaxShippinghttp://www.blingofsweden.se/admin/images/icon_info.gif Sales Tax Display Status1http://www.blingofsweden.se/admin/images/icon_info.gif Store Status0
www.blingofsweden.se
Please help, I´ve been messing around with this issue for a week now...
/Ola
What you'll need to do is post two sets of figures: the numbers from checkout page 2 that you get now and the numbers you believe you should get. All numbers from subtotal on down. Type them in please, don't post images.
Hi again,
here is the wrong figures.
308:-
Summa: (total)
-31:-
Mängdrabatt: (discount)
0:-
Frakt: (Brev/Paket): (shipcost)
62:-
Moms ingår med: (tax)
277:-
Totalsumma: (total to pay)
---------------------------------------------
IT SHOULD LOOK LIKE THIS:
308:-
Summa: (total)
-31:-
Mängdrabatt: (discount)
0:-
Frakt: (Brev/Paket): (shipcost)
55:-
Moms ingår med: (tax 25% - 277x0,2)
277:-
Totalsumma: (total to pay)
Hi again,
a new example. Think I see the issue now. It calculates tax on the origin totalcost. It should calculate tax after the discount is away.
546:-
Summa: (first total)
-55:-
Mängdrabatt: (discount)
0:-
Frakt: (Brev/Paket): (shipping cost)
109:-
Moms ingår med: (tax is included with )
491:-
Totalsumma: ( Total to pay, it should calculate tax on this value)
---------------------
THIS IS MY SETTINGS TO GET THIS VIEW:
This module is installed
true
Sort Order
150
Include Tax
true
Re-calculate Tax
None
Discount Units
percentage
Discount Basis
Total Items in Cart
Discount Level 1
2
-----------------------------
AND MY ORDER IN ORDERTOTAL
Postens avgift för postförskottot_cod_fee950 http://www.blingofsweden.se/admin/im...atus_green.gif Rabattkoderot_coupon
Grupp Rabattot_group_pricing
Gift Certificatesot_gv
Lågt ordervärdesavgiftot_loworderfee Mängdrabattot_quantity_discount150 http://www.blingofsweden.se/admin/im...atus_green.gif
Fraktot_shipping200 http://www.blingofsweden.se/admin/im...atus_green.gif
Summaot_subtotal100 http://www.blingofsweden.se/admin/im...atus_green.gif
Momsot_tax990 http://www.blingofsweden.se/admin/im...atus_green.gif
Totalsummaot_total998 http://www.blingofsweden.se/admin/im...atus_green.gif
Regards,
Ola
.... but you have recalculate tax = none.
If you have display prices including tax, you probably want recalculate = standard, include tax = yes. This grosses up the discount to cover the additional tax.
Hi,
and thanks for the answer. That didnt solve it though. This is what I get now.
645:-
Summa: (total) (Should be 10% of 645)
-81:-
Mängdrabatt: (discount)
0:-
Frakt: (Brev/Paket): (shipping)
113:-
Moms ingår med: (tax (should be 110:- 552x0,2)
552:-
Totalsumma: (total to pay)
The calculation you are looking for is beyond the current capabilities of Quantity Discounts. Rework on the checkout system i s scheduled for a future release of Zen Cart; perhaps the additional settings to support Sweden will be provided at that time.
Hi, I've installed qty disc on my 1.3.7 zen site. and purchased one of your other modules that shows the discount in the shopping cart sidebox.
I'm having a problem with the price quantity discount module. It is subtracting the discount from the shipping price instead of the merchandise price, which is causing the sales tax to be calculated on the difference between shipping and qty disc.
And actually in this instance all of these products are not even supposed to be taxable, so the shipping should not be taxable either, this may be another glitch, but the main problem I see is that the 8. Discount is being subtracted from the 10.34 shipping charge and the 8.25% tax is being calculated on the 2.34 difference:
Sub-Total:$115.20
United Parcel Service (3.08lbs) (Ground):$10.34
Quantity Discount:-$8.00
TX TAX 8.25%: $0.19
Total:$117.73
I tried re-ordering the discount up above the shipping Like this:
Quantity Discount:-$8.00
Sub-Total:$115.20
United Parcel Service (3.08lbs) (Ground):$10.34
TX TAX 8.25%: $0.19
Total:$117.73
But this made no difference in the calculation. I tried changing the Re-calculate Tax to None, and that didn't help either.
These are the settings I have now:
Quantity Discount
This module is installed
true
Sort Order
55
Include Tax
false
Re-calculate Tax
None
Discount Units
percentage
Discount Basis
Total Items in Cart
Discount Level 1
5
Discount Amount 1
6.25
Discount Level 2
10
Discount Amount 2
12.5
Discount Level 3
20
Discount Amount 3
18.75
Discount Level 4
40
Discount Amount 4
26
I appreciate your help.
R LeGris
Put QD immediately below subtotal and use free shipping (or flat rate) and retest.
Yes, that fixes it when free shipping is selected with a 0.00 shipping charge. No tax shows at all.
If I put in 10.00 for a flat rate shipping charge, then it charges the .83 tax on shipping instead of .19.
I took off free shipping, and chose the UPS and now it is correctly charging
.85 for tax on the shipping. (Which is still wrong because none of the products are taxable so there is not supposed to be tax on shipping, but that is another mod's problem, not yours)
Thanks for the help!
RLeGris