How do I add a payment icon to my footer section? (Dawn Theme )

Topic summary

A user wants to add custom payment icons (Payoneer, Remitly, Xoom, and Wise) to their Dawn theme footer, but only the Wise icon displays when using their current code.

Key findings:

  • The standard Shopify payment icon system doesn’t include all requested payment methods
  • Available icons are limited to those in Shopify’s payment_icons repository on GitHub
  • Missing icons require custom implementation

Solution provided:

  1. Upload custom SVG icons to the theme’s assets folder
  2. Name files exactly as: remitly.svg, xoom.svg, wise.svg, payoneer.svg
  3. Use updated Liquid code that references these custom assets using the asset_url filter and image_tag function

The solution involves hardcoding custom icons rather than relying on Shopify’s built-in payment icon system, which doesn’t support these specific payment providers.

Summarized with AI on November 2. AI used: claude-sonnet-4-5-20250929.

Hello Everyone!

I want to add Payoneer, Remitly, Xoom, and Wise payment icons to my footer section. I have used the code below. But only Wise icon is showing. How can I solve this? Please help me. Thank You.

Store: https://delicious-fruits-vegetables.myshopify.com/

Password; Admin

{% assign enabled_payment_types = ‘remitly,xoom,wise,payoneer’ | remove: ’ ’ | split: ‘,’ %}
{% for type in enabled_payment_types %}

1 Like

Hi @dreamtechzone_5
Go to Online Store → Theme → Customize → Footer section
Then follow these steps

If my reply is helpful, kindly click like and mark it as an accepted solution.

Use our Big Bulk Discount app to boost your sales!(https://apps.shopify.com/big-bulk-discount). Easy to set up and perfect for attracting more customers with bulk discounts. Try it now and watch your revenue grow
Thanks!

1 Like

I have done this. Maybe, I need to do some coding here to add this payment icon.

@dreamtechzone_5 ,

Which theme are you working on?

1 Like

Shopify Dawn Theme. Actually, I want to add Payoneer, Remitly, Xoom, and Wise payment icons.

Hello @dreamtechzone_5 ,

Here you can find the list of available icons https://github.com/activemerchant/payment_icons/tree/master/app/assets/images/payment_icons

If the one you are looking for is not available then you need to hard code for it.

Regards
Guleria

1 Like

So it’s not possible? Please help me. Thank you.

Upload the icons in assets (.svg) format. I name should be remitly.svg, xoom.svg, wise.svg, payoneer.svg
Update your code with this one

{% assign enabled_payment_types = 'remitly,xoom,wise,payoneer' | remove: ' ' | split: ',' %}

  {% for type in enabled_payment_types %}
    

      
      
      {{ type | capitalize }}
    

  {% endfor %}