Ship by weight includes Free delivery products in weight calculation

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
6 Jahre weitere
Or maybe i'm missing something?

scenario...

product 1 - free shipping
product 2 - not free shipping

product 1 in cart only, shipping option is zero

product 1 & product 2 in cart, the shipping method is using the weight of product 1 and product 2 (wrong).
6 Jahre weitere
Not sure which version you are using. But I can see that in 3.90, it's excluding free shipping item when calculating  weight. :)


6 Jahre weitere
wooncherk wrote:
Not sure which version you are using. But I can see that in 3.90, it's excluding free shipping item when calculating  weight. :)






Thanks, v3.90, where are you seeing this?
6 Jahre weitere

ImgBB
6 Jahre weitere
wooncherk wrote:

Thats fixed weight, i'm using Ship By Weight
6 Jahre weitere
FixedOrByWeight...didn't see that
6 Jahre weitere
As far as I know, in 3.90, both are merged into a single plugin. Unless you are upgrading your own from and old version of the plugin.
6 Jahre weitere
The ByWeight shipping plugin has this code...



//check whether all shopping cart items are marked as free shipping
            bool allItemsAreFreeShipping = true;
            foreach (var sc in cart)
            {
                if (sc.IsShipEnabled && !sc.IsFreeShipping)
                {
                    allItemsAreFreeShipping = false;
                    break;
                }
            }


So appears to only apply free shipping if 1) customer is in role or 2) all items are free shipping
6 Jahre weitere
The ByWeight shipping plugin has this code...



//check whether all shopping cart items are marked as free shipping
            bool allItemsAreFreeShipping = true;
            foreach (var sc in cart)
            {
                if (sc.IsShipEnabled && !sc.IsFreeShipping)
                {
                    allItemsAreFreeShipping = false;
                    break;
                }
            }


So appears to only apply free shipping if 1) customer is in role or 2) all items are free shipping
6 Jahre weitere
wooncherk wrote:
As far as I know, in 3.90, both are merged into a single plugin. Unless you are upgrading your own from and old version of the plugin.


I don't see this plugin unfortunately.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.