All things Shopify and commerce
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi,
I want to add a picture of the payment methods that i have on my add to cart page. Under the button that says "ik ga bestellen". How can i do that?
Webshop URL is: https://www.glowinh.com/
Thanks
@Bahrikaan
You can use the below code to show the payment icons in the cart drawer
<ul class="list list-payment" role="list">
{%- for type in shop.enabled_payment_types -%}
<li class="list-payment__item">
{{ type | payment_type_svg_tag: class: 'icon icon--full-color' }}
</li>
{%- endfor -%}
</ul>
Hi,
Where do i put this code in?