Hi, I've taken over this code which is meant to be part of rendering a mini cart
@{ double quantity = 0; var price = new PriceInfo(); if (!isCartEmpty) { quantity = Dynamicweb.Ecommerce.Common.Context.Cart.OrderLines.CountOnlyProducts; price = Dynamicweb.Ecommerce.Common.Context.Cart.Price; } }
BUT when you're on a cart step (show basket) and you change the quantity on an orderline and update the cart, everything on the main cart is updated, but the prise in the mini cart is always "one step behind" showing the total price from before I changed and updated the quantity, but refreshing and re-submitting makes both carts show the same...
Any ideas?