Created
May 18, 2021 07:40
-
-
Save ihorduchenko/ff0d384a04332287020fb77911d61005 to your computer and use it in GitHub Desktop.
Insert available payment methods icons
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{%- 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