Welcome to the new Sesami Help Portal with AI capabilities. Search your question and get your answer instantly!
For the complete documentation index, see llms.txt. This page is also available as Markdown.

Remove the Quantity Dropdown Menu

If your service only allows one booking per time slot, removing the quantity selector from the product page helps prevent customer errors — like selecting a quantity of 2 for a single appointment.

Why Remove It

When a customer selects more than one quantity for a booking product, the extra quantities may show as unavailable in your calendar (since there's only one slot per time). Removing the selector ensures each add-to-cart action equals one booking.

Option 1: Hide via Theme Settings

Many Shopify themes have a built-in option to hide the quantity selector:

  1. Go to Shopify > Online Store > Themes > Customize

  2. Navigate to your product page template

  3. Look for a Quantity toggle or visibility setting in the product section options

  4. Disable it

  5. Save

This is the simplest approach and doesn't require any code changes.

Option 2: Edit Theme Files

If your theme doesn't have a built-in toggle, you can hide the quantity selector by editing the theme code:

  1. Go to Shopify > Online Store > Themes > Actions > Edit Code

  2. Find the product template file (often sections/main-product.liquid or similar)

  3. Locate the quantity input/selector HTML

  4. Hide it with CSS (display: none) or remove the HTML block

  5. Save

Last updated

Was this helpful?