Remove counter besides Product Add to Cart

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
4 năm cách đây
Hi guys,

I want to remove counter besides Product Add to Cart.
Actually the website sells downloadable products so we dont need to sell more than 1 to a customer.

Does anyone know how to remove the counter?
4 năm cách đây
Set product's Maximum cart qty equal 1. Then hide quantity filed.
4 năm cách đây
Thanks for reply mhsjaber,

I did Set product's Maximum cart qty equal 1 as you said but I dont know how to hide quantity field.
There is a + and - besides every product I want to hide that.
Also I dont want store to count products and decrease the quantity of each product.

Please kindly tell me about it.d
4 năm cách đây
shahabset wrote:
Thanks for reply mhsjaber,

I did Set product's Maximum cart qty equal 1 as you said but I dont know how to hide quantity field.
There is a + and - besides every product I want to hide that.
Also I dont want store to count products and decrease the quantity of each product.

Please kindly tell me about it.d


To hide quantity field, open _AddToCart.cshtml file (your selected theme Views 》 Product). Find these 2 lines from it.

<input asp-for="EnteredQuantity" type="text"/>


And

<select asp-for="EnteredQuantity" asp-items="Model.AllowedQuantities"></select>


Then add below inline css to both of them.

style="display:none;"




To not to decrease quantity, Set Inventory method of the product as Don't track inventory.
4 năm cách đây
Thanks for reply


it doesnt have this line which u mentioned:

<select asp-for="EnteredQuantity" asp-items="Model.AllowedQuantities"></select>


the counter went away in product details but the + and - signs are still beside product!
and in other pages like Home Page it is still like before!!
4 năm cách đây
Thanks for reply but it didn't work for me
4 năm cách đây
Thanks for reply but it didn't work for me
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.