Hello Peter,
Yes, now i am able to add Items into Shopping Cart now using SKU. But now I am facing issue in ShoppingCartItemInfo object.
After item added to shopping cart, to show item on shopping cart i have written code like:
ShoppingCartInfo ShoppingCartInfoObj = ECommerceContext.CurrentShoppingCart;
foreach (ShoppingCartItemInfo objShoppingCartItemInfo in ShoppingCartInfoObj.CartItems)
{
string cartItemTxt = objShoppingCartItemInfo.CartItemText;
}
Here, i am getting object of Shopping Cart and its items but i am not getting values from the field which i have set at the time of adding items to shopping cart.
Please let me know if any confusion.