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.
-
Go into the Coding
-
Open the footer.liquid file
-
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.
