How To Remove Quantity Options From Product Pages And Cart

Is there a simple way to remove the ability for customers to change the product quantity on product pages and their shopping cart? I’m surprised there isn’t an on/off switch in CS-Cart to disable product quantity adjustments. Some products/stores simply do not need it.



I’ve played around with template files before in 3.0 and have gotten it to go away but now with 4.0, it’s back.



The problem is that I sell custom printing materials like business cards. I have product options for people to order them in sets of 50, 100, 150, etc. They upgrade quantity by using that feature. Multiplying the price of the product, just makes the sales total grow out of whack! The majority of people do just ignore the option but some folks are clicking on it, thinking my prices are insane, and leaving my cart!!!



Is there a module available or a how-to guide on removing this?



Thanks.

You can use the hook “products:qty” to override the default behavior, or you might be able to just use a products/qty.pre.tpl to do

{assign var=“show_qty” value=false}



If you are not familiar with hooks you will need to read up on them first or hire a developer to do this for you.

[quote name='tbirnseth' timestamp='1406750235' post='188521']

You can use the hook “products:qty” to override the default behavior, or you might be able to just use a products/qty.pre.tpl to do

{assign var=“show_qty” value=false}



If you are not familiar with hooks you will need to read up on them first or hire a developer to do this for you.

[/quote]



Note that the content of the override hook should not be empty. At least add empty div to it.

Or an html comment