Skip to content

Instantly share code, notes, and snippets.

@AaronGoldsmith
Created January 21, 2020 20:48
Show Gist options
  • Save AaronGoldsmith/3dd72bfd10f9d8aa45cba6cf06f7d4e6 to your computer and use it in GitHub Desktop.
Save AaronGoldsmith/3dd72bfd10f9d8aa45cba6cf06f7d4e6 to your computer and use it in GitHub Desktop.
<ul class="payment-icons list--inline site-footer__icon-list">
{% assign enabled_payment_types = 'clearpay,afterpay,visa, master,american_express,paypal' | remove: ' ' | split: ',' %}
{% for type in enabled_payment_types %}
<li class="payment-icon">
{{ type | payment_type_svg_tag: class: 'icon icon--full-color' }}
</li>
{% endfor %}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment