I need apps with a minimum number of products ordered, is there something like that?
Hello AdityaS,
You can set minimum order quantity by customizing theme instead of using some app.
Go to Online Store->Theme->Edit code->Sections->product template.liquid.
Search this code
<input type="number" id="Quantity" name="quantity" value="1" min="1" class="quantity-selector">
set min as what quantity you want.
What if you require MOQ for certain items and not others -- is there an easy way to code that by Product or by collection?
Thank you!
@JodiK wrote:What if you require MOQ for certain items and not others -- is there an easy way to code that by Product or by collection?
Yes, common to use tags
{% if product.tags contains "MOQ" %}
{% endif %}
Basing it on other properties is a common topic able to be searched about liquid logic to show things on collections or product pages