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.
Hace 6 años
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).
Hace 6 años
Not sure which version you are using. But I can see that in 3.90, it's excluding free shipping item when calculating  weight. :)


Hace 6 años
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?
Hace 6 años

ImgBB
Hace 6 años
wooncherk wrote:

Thats fixed weight, i'm using Ship By Weight
Hace 6 años
FixedOrByWeight...didn't see that
Hace 6 años
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.
Hace 6 años
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
Hace 6 años
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
Hace 6 años
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.