Why isn't the Klarna logo showing in my footer?

{%- liquid
assign show_selectors = false
assign currency_selector = false
assign locale_selector = false

if section.settings.show_currency_selector and shop.enabled_currencies.size > 1
assign currency_selector = true
endif

if section.settings.show_locale_selector and shop.enabled_locales.size > 1
assign locale_selector = true
endif

if currency_selector or locale_selector
assign show_selectors = true
endif
-%}

{%- if settings.color_newsletter == settings.color_body_bg -%}
{%- style -%}
.site-footer__section–newsletter {
padding: 0;
}
{%- endstyle -%}
{%- endif -%}

{%- if section.settings.show_newsletter -%}
{%- if section.settings.newsletter_title != blank -%}
{{ section.settings.newsletter_title }}
{%- endif -%}

{%- if section.settings.newsletter_richtext != blank -%}

{{ section.settings.newsletter_richtext }}
{%- endif -%}
{%- render 'newsletter-form', section_id: section.id, snippet_context: 'footer' -%}
{%- endif -%}

{%- if show_selectors -%}
{%- form ‘localization’, class: ‘multi-selectors site-footer__section’ -%}
{%- if locale_selector -%}

{{ 'general.language.dropdown_label' | t }}

{{ form.current_locale.endonym_name }}
{%- endif -%}

{%- if currency_selector -%}

{{ 'general.currency.dropdown_label' | t }}

{%- if section.settings.show_currency_flags -%} {%- endif -%} {{ form.current_currency.iso_code }} {%- if form.current_currency.symbol -%}{{ form.current_currency.symbol }}{%- endif -%}
{%- endif -%} {%- endform -%} {%- endif -%}

{%- if section.settings.show_social_icons -%}

{%- render 'social-icons', social_class: 'footer__social' -%}
{%- endif -%}

{%- if linklists[section.settings.menu].links.size > 0 -%}

    {%- for link in linklists[section.settings.menu].links -%}
  • {{ link.title }}
  • {%- endfor -%}
{%- endif -%}

{%- if section.settings.show_payment_icons -%}
{%- unless shop.enabled_payment_types == empty -%}

    {%- for type in shop.enabled_payment_types -%}
  • {{ type | payment_type_svg_tag }}
  • {%- endfor -%}
{%- endunless -%} {%- endif -%}
{%- if section.settings.show_copyright -%} © {{ 'now' | date: '%Y' }} {{ shop.name }} {%- if section.settings.copyright_text != blank -%} {{ section.settings.copyright_text }} {%- endif -%} {%- endif -%} {{ powered_by_link }}

{% schema %}
{
“name”: “Footer”,
“settings”: [
{
“type”: “header”,
“content”: “Newsletter”
},
{
“type”: “checkbox”,
“id”: “show_newsletter”,
“label”: “Show newsletter signup”,
“info”: “Customers who subscribe will have their email address added to the ‘accepts marketing’ customer list.”,
“default”: true
},
{
“type”: “text”,
“id”: “newsletter_title”,
“label”: “Newsletter heading”,
“default”: “Sign up and save”
},
{
“type”: “richtext”,
“id”: “newsletter_richtext”,
“label”: “Text”,
“default”: “

Let customers know about the key benefits of joining your newsletter.


},
{
“type”: “header”,
“content”: “Language selector”,
“info”: “To add a language, go to your language settings.
},
{
“type”: “checkbox”,
“id”: “show_locale_selector”,
“label”: “Show language selector”,
“default”: true
},
{
“type”: “header”,
“content”: “Currency selector”,
“info”: “To add a currency, go to your currency settings.
},
{
“type”: “checkbox”,
“id”: “show_currency_selector”,
“label”: “Show currency selector”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “show_currency_flags”,
“label”: “Show currency flags”,
“default”: true
},
{
“type”: “header”,
“content”: “Additional footer content”
},
{
“type”: “checkbox”,
“id”: “show_social_icons”,
“label”: “Show social icons”,
“default”: true
},
{
“type”: “link_list”,
“id”: “menu”,
“label”: “Choose a menu”,
“default”: “footer”,
“info”: “Optional. This menu won’t show dropdown items”
},
{
“type”: “checkbox”,
“id”: “show_payment_icons”,
“label”: “Show payment icons”
},
{
“type”: “checkbox”,
“id”: “show_copyright”,
“label”: “Show copyright”
},
{
“type”: “text”,
“id”: “copyright_text”,
“label”: “Additional copyright text”
}
]
}
{% endschema %}