Smart product quantities

I’m working on an e-commerce marketplace app where products can have both minimum order numbers and case sizes. For example, a customer can order no fewer than 3 of the item and it has a case size of 2. So the customer ideally would see a quantity of 3, 5, 7, 9, 11, etc.

Currently, I have the product database set up with fields for minimum qty and case size, but not sure how to best put this onto the product page and the cart +/-.

Hi @adriannees ,

You can have quantity collection that have quantity property and case size property, you can use modal screen to show and then button to update the input field in the order screen.

Or if you want just adding number through button, you can use another input field with custom formula that is order quantity+2, then you can use change input value to update it.