I want to remove icon from shopify footer

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:

  1. From your Shopify admin, go to Online Store > Themes and select Edit Code
  2. Find the footer.liquid file
  3. 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.

  1. Hit Save

I hope this helps.