Hello,
I need to set a minim order for some products, I change the minimum quantity from product-template.liquid, now I need to fixed this minimum amount also in cart-template.liquid for obtain a minimum order.
I write those code:
Product-template.liquid:
Show More
{% assign productTags = product.tags | join: ', ’ %}
{% if productTags contains ‘min1072’ %}
{% else %}
{% if productTags contains ‘min1500’ % %}
{% else %}
{% if productTags contains ‘min5250’ % %}
{% else %}
{% endif %}
{% endif %}
{% endif %}
cart-template.liquid
Show More
{% assign productTags = product.tags | join: ', ’ %}
{% if productTags contains ‘min1072’ %}
{% else %}
{% if productTags contains ‘min1500’ % %}
{% else %}
{% if productTags contains ‘min5250’ % %}
{% else %}
{% endif %}
{% endif %}
{% endif %}
How can I solve?
I’m apologise: if I click on html I can’t publish my post
