Can Someone Help Me Add Payment Icons to My Footer?

Hi everyone,

I’m looking for help with adding payment method icons to the footer of my website. I would really appreciate it if someone could guide me on the best approach or share the required steps/code to achieve this.

Website: https://avyannadecore.com
Password: nds

Thank you in advance for your support and time :folded_hands:

Go to Customize Theme in Shopify Admin
Find the footer section in the theme editor
Look for settings like “Show payment icon” or “Payment methods” (most modern themes have this)
Turn it on and choose which payment methods to display
save and publish

If your theme doesn’t have this option:

Go to Online Store > Themes
Click edit code on your theme
Open the footer file in the Sections folder (usually footer.liquid or footer-section.liquid)
Add this code snippet where you want the icon:

{% if shop.enabled_payment_gateways %}
     <div class="payment-icons">
       {% for gateway in shop.enabled_payment_gateways %}
         <img src="{{ gateway | payment_gateway_to_icon_url }}" alt="{{ gateway | payment_gateway_to_icon_alt_text }}" />
       {% endfor %}
     </div>
   {% endif %}

Save and check your footer

Hi @naveen.raj

You can add payment method icons directly from Shopify’s built-in customization settings, no custom code is required.

Please follow these steps:

  1. Go to your Shopify Admin

  2. Navigate to Online Store → Themes

  3. Click Customize on your active theme

  4. In the theme editor, open the Footer section

  5. Look for the option “Show payment icons” (or similar)

  6. Toggle it ON and Save the changes

Once enabled, the supported payment method icons will automatically appear in the footer of your website.

Thank You!