We'll say that multiple users are using the Shoppoing cart at the same time & each user have items in their carts.
Product Ordered Amount(items in cart)
user1 -> A -> 2
user2 -> A -> 1
user3 -> B -> 1
user4 -> A -> 3
When we get current cart object like this,
$cart = VirtueMartCart::getCart ();
Say we need how many items of product A are there in cart,
What is the value we get?
Does it depend on the specific user or, it will display total items ,that has been added by all the users ,returning the value = 6 ?
Any help Please
What is the final goal?