Payment methods at the "Add to cart" page

Payment methods at the "Add to cart" page

Bahrikaan
Explorer
72 1 17

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

 

 

 

39932fbb9e7298d4b267a9318ee994a1.png

Replies 2 (2)

Huptech-Web
Shopify Partner
1169 234 264

@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>
If you found this response helpful, please do like and accept the solution. Thanks!
Need support with Customizing your Shopify store?
Feel free to contact me at info@huptechweb.com or Visit our website Huptech Web.
Instant Shortcode Builder: Integrate customizable UI features anywhere in your store - No coding knowledge required
Bahrikaan
Explorer
72 1 17

Hi,

 

Where do i put this code in?