0
晚上好!我試圖使用純液體(Shopify模板語言)從產品的變體陣列中刪除變體。我只想使用JavaScript作爲最後的手段。從液體產品中的變體陣列中移除變體
下面是我到目前爲止的地方。任何在if檢查中的變體都需要從currentProduct.variants
中刪除。
{% assign currentProduct = product %}
{% for variant in currentProduct.variants %}
{% include 'shappify-variant-is-csp' %}
{% if csp_variant != 1 %}
//need to remove the object that meets this if statement
{% endif %}
{% endfor %}