I am currently conducting tests to verify the functionality of adding items to the cart from various web browsers. The issue appears to arise when attempting to retrieve items from the cart. Below is the relevant code:
```csharp
public IViewComponentResult Invoke(IPublishedContent currentPage)
{
var store = currentPage.GetStore();
var order = _vendrApi.GetCurrentOrder(store.Id);
Remarkably, this method operates seamlessly in Google Chrome, allowing for the successful addition of items to the cart. However, when tested with alternative web browsers, the retrieval process fails to function as expected. Please bear in mind that this issue is currently isolated to my local development environment.
umbraco commerece Cart issue
I am currently conducting tests to verify the functionality of adding items to the cart from various web browsers. The issue appears to arise when attempting to retrieve items from the cart. Below is the relevant code:
```csharp public IViewComponentResult Invoke(IPublishedContent currentPage) { var store = currentPage.GetStore(); var order = _vendrApi.GetCurrentOrder(store.Id);
} ```
Remarkably, this method operates seamlessly in Google Chrome, allowing for the successful addition of items to the cart. However, when tested with alternative web browsers, the retrieval process fails to function as expected. Please bear in mind that this issue is currently isolated to my local development environment.
is working on a reply...