Cannot add new payment icons (Klarna) to Debut theme

Hi, I’m running the Debut theme for my webshop.

I’ve recently added Klarna as a payment option to my store, and wanted to add this to the payment icons in my footer. I’ve seen a whole bunch of tutorials which outline the same method.

  1. Go into the Coding

  2. Open the footer.liquid file

  3. Locate

{% for type in shop.enabled_payment_types %}

and replace with

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

and adding the required names for the payment icons.

However, that code simply doesn’t exist in the footer.liquid coding file?

Am I doing something wrong?

Many thanks.

Hi @upgradehaus ,

Please go to footer.liquid file, find ‘payment_type_svg_tag’ and add code here:

Code:

- 

Hope it helps!

1 Like

Yes, that worked perfectly. Thanks so much for your help!

1 Like