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
A Shopify store owner wants to display payment method icons on their cart page, specifically below the checkout button (“ik ga bestellen”). They shared a screenshot showing their current cart layout.
Proposed Solution:
shop.enabled_payment_types to dynamically show available payment methods.Current Status:
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
{%- for type in shop.enabled_payment_types -%}
- {{ type | payment_type_svg_tag: class: 'icon icon--full-color' }}
{%- endfor -%}
Hi,
Where do i put this code in?