How can I inlcude the Klarna payment icon in our footer? I am using the shopify Impulse theme.

Topic summary

A Shopify store owner using the Impulse theme wants to add the Klarna payment icon to their footer alongside existing payment icons.

Initial Solution Proposed:

  • PageFly support suggested that payment icons typically auto-populate based on enabled payment methods in Shopify Settings => Payments
  • Provided code snippet to modify footer.liquid file for manual customization

Issue:

  • The suggested code caused some existing payment icons to be removed
  • The user clarified they specifically need to add Klarna icon while keeping all other payment icons intact

Status: Unresolved - the initial code solution didn’t achieve the desired outcome of adding Klarna without removing other payment methods.

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

Hi!

Can someone help me to include the Klarna payment icon to the footer of my shopify webstore?
Using the Impulse theme.

Hi @lagentilestore

This is Richard from PageFly - Shopify Page Builder App

Usually the footer icon will gather all the payment methods you have enabled on the store Payments and display it

In this case you just need to enable it in Shopify Settings => Payment

If not you can modify the code by follow this guide:

Search for footer.liquid and find this code {% for type in shop.enabled_payment_types %}

After that replace with the code below

{% assign enabled_payment_types = 'visa,master,american_express,paypal' | remove: ' ' | split: ',' %}
{% for type in enabled_payment_types %}

Hope this can help you solve the issue

Best regards,

Richard | PageFly

Hi,

That code made me remove some of the payment icons. Please note that I want to include the KLARNA icon next to the other payment icons.

Kind regards,
Els