- 11
Hi, we want to skip the guest checkout page once user click the 'Add to cart' on the product details page. After the click the user should see the checkout screen. Can we do it using this plugin or setting in nop.
@if (Model.IsEditable && item.AllowItemEditing)
{
var editCartItemUrl = Url.RouteUrl("Product", new {SeName = item.ProductSeName});
editCartItemUrl = webHelper.ModifyQueryString(editCartItemUrl, "updatecartitemid=" + item.Id, null);
<div class="edit-item">
<a href="@editCartItemUrl">@T("Common.Edit")</a>
</div>
}