カラバリテスト
全てのカラー
{% assign current_product_title = product.title | split: ' ' | first %} {% assign all_items_collection = collections['all-items'] %} {% assign other_color_products = all_items_collection.products | where_exp: "item", "item.title contains current_product_title" %}-
{% for item in other_color_products %}
{% assign item_title_parts = item.title | split: ' ' %}
{% if item_title_parts.size > 1 and item_title_parts.first == current_product_title %}
- {{ item_title_parts[1] }} {% endif %} {% endfor %}