批发商店-如果声明无效

时间:2018-07-13 15:51:59

标签: if-statement shopify liquid

我正在建立一家批发商店,但有多个用户组。第一个用户组rdg000141工作正常,但在elsif部分之后,代码停止工作。

{% if template contains 'rdg000141' or template contains 'wholesale' %}
    {% if customer.tags contains 'rdg000141' and template contains 'rdg000141' %}
        {{ content_for_layout }}
    {% else %}
        {% include 'wholesale-note' %}
    {% elsif customer.tags contains 'wholesale' and template contains 'wholesale' %}
        {{ content_for_layout }}
    {% else %}
        {% include 'rdg000141-note' %}
    {% endif %}
{% else %}
    {{ content_for_layout }}
{% endif %}
{% endif %}

欢呼

0 个答案:

没有答案