i want to remove icon from shopify footer
Hello There,
Please share your store URL and Password.
So that I will check and let you know the exact solution here.
Hi @happiestshoping ,
Here’s how to edit the Shopify payment icons in the theme code:
- From your Shopify admin, go to Online Store > Themes and select Edit Code
- Find the footer.liquid file
- Search for the following code
{%- for type in shop.enabled_payment_types -%}
Replace it with this code
{% assign enabled_payment_types = 'paypal' | remove: ' ' | split: ',' %}
{% for type in enabled_payment_types %}
This code will only keep the Paypal icon on your footer.
- Hit Save
I hope this helps.