When adding an item to the cart using the Litium.Foundation.Modules.ECommerce.ShoppingCarts.Cart a “default” deliverymethod is added to the cart. How can I override this behaviour? I don’t want any deliverymethod to be added untill the user access the checkout. I Could “solve” this by doing something like this:
_cart.Add(...);
CartAccessor.Cart.OrderCarrier.Deliveries.Clear();
When adding an item to the cart outside the checkout but I would assume that there is a better way to do this.
Litium version: [7.6.1]