1. TOP
  2. Shopify
  3. 【Shopify】(随時更新)便利なオブジェクト - #番外編
詳しくはこちら
Shopify
 | 

【Shopify】(随時更新)便利なオブジェクト - #番外編

Shopifyには、商品やコレクションなど様々なオブジェクトが存在します。

今回は、たまに使う、便利なオブジェクトを紹介していきます。

 

この記事は随時更新します。

 

■バックナンバー

おすすめ商品

https://shopify.dev/docs/themes/liquid/reference/objects/recommendations

商品詳細ページで、その商品に関連する商品を取得できるオブジェクトです。

 

{% if recommendations.performed %}
  {% if recommendations.products_count > 0 %}
    {% for product in recommendations.products %}
      {{ product.title | link_to: product.url }}
    {% endfor %}
  {% endif %}
{% else %}
  <div class="placeholder">Placeholder animation</div>
{% endif %}

利用可能な決済手段のアイコン一覧

https://shopify.dev/docs/themes/liquid/reference/objects/shop#shop-enabled_payment_types

以下のように、Shopify上で利用可能な決済手段のアイコンを一覧で取得できるオブジェクトです。

 

{% unless shop.enabled_payment_types == empty %}
  <div class="payment-icn">
    <ul class="payment-icn__lists">
      {% for type in shop.enabled_payment_types %}
        <li class="payment-icn__item">
          {{ type | payment_type_svg_tag: class: 'icon' }}
        </li>
      {% endfor %}
    </ul>
  </div>
{% endunless %}

まとめ

■バックナンバー

関連記事