# 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**

{% hint style="warning" %}
Editing theme files requires some coding knowledge. If you're not comfortable, ask your theme developer or hire a [Shopify Expert](https://experts.shopify.com/).
{% endhint %}

## Related

* [Catalog and Products](/apps-integrations/shopify/catalog-and-products.md) — product setup for Sesami
* [Manual Install](/apps-integrations/shopify/online-store/manual-install.md) — custom theme integration


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.sesami.co/apps-integrations/shopify/online-store/i-want-to-remove-the-quantity-drop-down-menu.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
