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.

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 %}