# 数量ドロップダウンメニューを削除する

サービスが各時間枠につき1件の予約しか受け付けない場合、商品ページから数量セレクターを削除すると、1回の予約に対して数量2を選ぶといった顧客の入力ミスを防ぐのに役立ちます。

## 削除する理由

顧客が予約商品の数量を1つ以上選択すると、余分な数量はカレンダー上で利用不可として表示される場合があります（各時間帯に1枠しかないため）。セレクターを削除すれば、各カート追加操作が1件の予約に対応します。

## オプション1: テーマ設定から非表示にする

多くのShopifyテーマには、数量セレクターを非表示にするための組み込みオプションがあります：

1. Shopify Adminで **Shopify > オンラインストア > テーマ > カスタマイズ**
2. 商品ページのテンプレートに移動する
3. 次を探す **数量** 製品セクションのオプション内にある切り替え設定または表示設定
4. 無効にする
5. **保存**

これが最も簡単な方法で、コードの変更は不要です。

## オプション2: テーマファイルを編集する

テーマに組み込みの切り替えがない場合は、テーマコードを編集して数量セレクターを非表示にできます：

1. Shopify Adminで **Shopify > オンラインストア > テーマ > アクション > コードを編集**
2. 商品テンプレートファイルを見つける（多くの場合 `sections/main-product.liquid` または同様のファイル）
3. 数量入力／セレクターのHTMLを見つける
4. CSSで非表示にする（`display: none`）またはHTMLブロックを削除する
5. **保存**

{% hint style="warning" %}
テーマファイルの編集にはある程度のコーディング知識が必要です。慣れていない場合は、テーマ開発者に依頼するか、 [Shopify Expert](https://experts.shopify.com/).
{% endhint %}

## 関連項目

* [カタログと商品](/ja/apps-integrations/shopify/catalog-and-products.md) を雇ってください — Sesami向けの商品設定
* [手動インストール](/ja/apps-integrations/shopify/online-store/manual-install.md) — カスタムテーマ統合


---

# 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/ja/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.
