Skip to content

Instantly share code, notes, and snippets.

@ihorduchenko
Created May 18, 2021 07:40
Show Gist options
  • Save ihorduchenko/ff0d384a04332287020fb77911d61005 to your computer and use it in GitHub Desktop.
Save ihorduchenko/ff0d384a04332287020fb77911d61005 to your computer and use it in GitHub Desktop.
Insert available payment methods icons
{%- unless shop.enabled_payment_types == empty -%}
<div class="footer-group">
<p class="footer__title">
Payment methods
</p>
<ul class="inline-list payment-icons">
{%- for type in shop.enabled_payment_types -%}
<li class="icon--payment">
{{ type | payment_type_svg_tag }}
</li>
{%- endfor -%}
</ul>
</div>
{%- endunless -%}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment