Hi,
I would like to have only ONE shippiing option (is auto selected) that its CHARGE will be dynamic.
It depends on how many items a user buys.
This is what I tried:
1. ShoppingCartContent.ascx.cs -> caculate teh shipping I want to cahrge
ShoppingCartInfoObj.TotalShipping = getShippingPrice();
ShoppingCartInfoProvider.SetShoppingCartInfo(ShoppingCartInfoObj);
but along the seps it doesnt keep the value +
This line also made shipping clear and not be passed on.
ShoppingCartInfoProvider.EvaluateShoppingCartContent(ShoppingCartInfoObj);
AND
1. create a SHIPPPING OPTION in cmsdesk
2. ShoppingCartContent.ascx.cs -> I try to update the charge for this SHIPPING OPTION for this user.
What is the correct way to do this?