Remove Quantity selection in checkout

I would like to remove the Quantity selector on the cart page as people booking should not ever book more than one tour. If they do change the quantity the price increases and they leave without purchasing the tour. The confusion is people sometimes think they need to enter the number of people, but our tours are for a complete vehicle, number of people does not matter as long as it is not over the maximum.

I would like to have the Quantity just not show. I did a google search and tried the code I found to put into the function.php in the child theme, but it did not work.

Hello Terry,

For “I would like to have the Quantity just not show.”, you don’t need to edit the functions file, you can simply add the css below inside your Appearance >> Customize >> Custom CSS and JS >> Custom CSS box:

td.product-quantity {
visibility: hidden;
}

th.product-quantity {
visibility: hidden;
}

Thank you