Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Set Product Quantity page to be increments of 3

Set Product Quantity page to be increments of 3

JPM1
Visitor
1 0 0

I would like to set the Quantity drop-down menu to only show option '3' or increments of 3 (e.g., 3, 6, 9, 12, ....). I would also be okay with having a validation rule that informs the customer to select a value/increment of 3 on the product page. TLDR, I need Shopify to not allow customers to select single units. 

 

I tried to set up a Variant called Quantity, but the original/standard Quantity drop-down appears on the page preview.  

 

Any guidance would be appreciated, thank you! 

Replies 2 (2)

Ahmad31
Shopify Partner
109 9 8

Yes i can help you with this 

Ahmad31_1-1730830122562.png

 

Love my work? Buy me a coffee!
Need a Shopify Developer: Email me Or Chat on Whatsapp
If you found my solution helpful, please like and accept it. Your support is greatly appreciated!

nickemery
New Member
7 0 0

To set the Quantity drop-down to show only increments of 3 in Shopify, you can achieve this by customizing your theme’s code or adding validation. Here are two approaches
Custom Code

In your theme's code, locate the product-template.liquid file and modify the quantity input to allow increments of 3 only. You can use JavaScript to set a step value on the quantity input, ensuring customers can only select 3, 6, 9, etc.
Try Using this Custom Code for Quantity Selector;
document.querySelector('input[name="quantity"]').setAttribute('step', 3);