How to Set Up Quantity Selectors for Discounts
This guide explains how to connect the app's volume discount options (e.g., radio buttons for "Buy 2," "Buy 3") to your theme's native quantity input field. When a customer selects a discount tier, the quantity on the product page will update automatically.
1. Find Your Theme's Quantity Selector Class
- On your live store, go to a product page that has the volume discount active.
- Right-click directly on the quantity input field (the box where you see the number "1") and select Inspect from the menu.
- In the developer console that opens, look for the highlighted line of HTML and find the
class="..."
attribute. - Copy the class name (or names) from within the quotes.
2. Add the Class to the App's Settings
- In the Kite app, navigate to Settings and then click on Widget setting.
- Scroll down to find the input field labeled Quantity button selector.
- Paste the class name you copied into this field.
3. Format the Class Name Correctly
- You must add a period (
.
) to the beginning of the class name. For example, if the class you copied isquantity__input
, you should enter.quantity__input
. - If the selector has multiple classes, separate them with a comma and add a period before each one (e.g.,
.class-one, .class-two
).
4. Save and Test
- Click Save in the app's settings.
- Return to your product page and refresh it.
- Click on one of the discount radio buttons. The quantity number in the input field should now update automatically to match the selected offer.
Updated on: 11/08/2025
Thank you!