SimplCommerce
SimplCommerce copied to clipboard
Demo: Wishlist: Negative counts in cart
Using the wishlist one can add negative amounts of items to the cart.
Easy fix:- ..\SimplCommerce\src\Modules\SimplCommerce.Module.WishList\Areas\WishList\Views\WishList\PrivateList.cshtml Add min="1" for the input type
<div class="form-group row"> <label class="col-sm-4 col-form-label">@Localizer["Quantity"]</label> <div class="col-md-8"><input type="number" name="qty" class="quantity-field" value="@item.Quantity" min="1"/></div> </div>
Easy fix:- ..\SimplCommerce\src\Modules\SimplCommerce.Module.WishList\Areas\WishList\Views\WishList\PrivateList.cshtml Add min="1" for the input type
<div class="form-group row"> <label class="col-sm-4 col-form-label">@Localizer["Quantity"]</label> <div class="col-md-8"><input type="number" name="qty" class="quantity-field" value="@item.Quantity" min="1"/></div> </div>
Please add this in a new pull request
hi, i added a control for this. pls. review. thanks. https://github.com/ouzsrcm/SimplCommerce/commit/b5e655a80f2583cad77b4269c6f1b6af59e02f8e
@TATARPRO Created a PR with the fix. Thank you!!