Add to cart
Razor Example
@using (Html.BeginEkomForm(FormType.AddToOrderProduct, "product-card__form"))
{
<input type="hidden" name="storeAlias" value="StoreAlias" />
<input type="hidden" name="productId" value="@product.Key" />
<input type="hidden" name="variantId" value="@variant.Key" />
<input type="hidden" name="action" value="AddOrUpdate" />
<input type="number" name="quantity" value="1" />
<button type="submit">Add to cart</button>
}Example with stock validation
Last updated