Shipping costs calculating wrong -> packages/bitter_shop_system/src/Bitter/ShopSystem/ActiveShippingCost.php Line 174

Issue #54 new
Jakob Lämmle created an issue

If you have a item with a lower shipping cost in your order list the default higher shipping cost is still taken.

Line 174:

if ($shippingCost < $highestShippingCosts) {

Should be:

if ($shippingCost > $highestShippingCosts) {

Comments (0)

  1. Log in to comment