I have opened other payment methods, but all I have is the paypal icon at the bottom of my website.
I would like to add ICONS for other payment methods at the bottom of my website.
Like this:
@Edison18831
Hii,
can you please share your store URL
@Edison18831
Hii,
Its Customization work so
can you please share your store details
My store URL:
From your Shopify admin, go to Online Store > Themes.
Find the theme you want to edit, and then click Actions > Edit code.
In the Sections directory, click footer.liquid. If your theme doesn’t include this file, then click theme.liquid in the Layout directory.
Find the following code in the file:
{% for type in shop.enabled_payment_types %}
Replace it with:
{% assign enabled_payment_types = 'visa,master,american_express,paypal' | remove: ' ' | split: ',' %}
{% for type in enabled_payment_types %}
I didn’t find this code “{% for type in shop.enabled_payment_types %}” in footer.liquid
I found it, and it worked. Thank you very much.