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

Topic summary

A Shopify store owner using the Sense theme 2.0 reported that the Klarna payment logo wasn’t displaying in their footer alongside other payment processors, despite Klarna being their highest-converting payment method.

The Solution:
A community helper provided a code fix that involved updating the footer section code, specifically moving the {% endschema %} tag to the correct position in the Liquid template. The solution required:

  • Sharing the footer section code (found in Edit Code > Sections > Footer)
  • Replacing it with corrected code that properly structures the schema section
  • The fix worked across multiple themes including Sense, Prestige, and custom themes

Common Issues Encountered:

  • Initial code implementation sometimes caused logos to display oversized
  • Some users experienced “Duplicate entries for tag: schema” errors when the schema tag was incorrectly positioned
  • The solution needed theme-specific adjustments

Resolution:
Multiple users confirmed the fix successfully resolved their Klarna logo display issues. The helper provided customized code solutions for different theme variations throughout the thread, with most users reporting successful implementation after applying the corrected footer code.

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

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

<klarna-placement
data-key=“credit-promotion-auto-size”
data-locale=“nl-NL”
data-purchase-amount=“”

{%- if show_selectors -%}
{%- form ‘localization’, class: ‘multi-selectors site-footer__section’, data-disclosure-form: ‘’ -%}
{%- 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 %}

1 Like

@Justin76

thanks code please update this

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

{% 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](/admin/customers?query=&accepts_marketing=1).",
"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.](/admin/settings/languages)"
},
{
"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.](/admin/settings/payments)"
},
{
"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 %}
1 Like

Can I use this code as it is?

1 Like

@RazKen

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

1 Like

Thank you for the reply.

The website is:
www.razken.ca

Thank you :folded_hands:

1 Like

@RazKen

can you please send your footer code so i will check and update

1 Like

Where can I find it please?

Sorry about that!

1 Like

@RazKen

oh no rush

Go to Edit Code >>>> Section >>>> Footer

1 Like

{% capture theme_settings_link %}{{ ‘layout.footer.theme_settings’ | t }}{% endcapture %}

{% for block in section.blocks %}

{% case block.settings.width %}
{% when ‘16%’ %}
{%- assign block_width = ‘small–one-whole two-twelfths’ -%}
{% when ‘25%’ %}
{%- assign block_width = ‘small–one-whole one-quarter’ -%}
{% when ‘33%’ %}
{%- assign block_width = ‘small–one-whole one-third’ -%}
{% when ‘50%’ %}
{%- assign block_width = ‘small–one-whole one-half’ -%}
{% when ‘66%’ %}
{%- assign block_width = ‘small–one-whole two-thirds’ -%}
{% when ‘75%’ %}
{%- assign block_width = ‘small–one-whole three-quarters’ -%}
{% when ‘100%’ %}
{%- assign block_width = ‘one-whole’ -%}
{% endcase %}

{% if block.settings.title %}

{{ block.settings.title | escape }}

{% endif %}

{% case block.type %}

{% when ‘menu’ %}

    {% for link in linklists[block.settings.menu].links %}
  • {{ link.title }}
  • {% else %} {% capture theme_settings_footer_linklist_path %}Footer > Quick links link list{% endcapture %} {{ 'layout.footer.instructions_for_linklist_html' | t: theme_settings_link: theme_settings_link, theme_settings_footer_linklist_path: theme_settings_footer_linklist_path }} {% endfor %}

{% when ‘text’ %}

{% if block.settings.richtext != blank %}
{{ block.settings.richtext }}
{% else %}

{{ 'layout.footer.instructions_for_text_content_html' | t: theme_settings_link: theme_settings_link }}

{% endif %}

{% when ‘newsletter’ %}

{% if block.settings.subtext != blank %} {{ block.settings.subtext }} {% endif %}
{% include 'newsletter-form' with button: 'secondary' %} {% endcase %}
{% endfor %}

{% if section.settings.social_enabled or section.settings.legal_menu != blank %}


{% endif %}
{% if section.settings.legal_menu != blank %}
    {% for link in linklists[section.settings.legal_menu].links %}
  • {{ link.title }}
  • {% endfor %}
{% endif %} {% if section.settings.social_enabled %}
    {% if settings.social_twitter_link != blank %}
  • Twitter
  • {% endif %} {% if settings.social_facebook_link != blank %}
  • Facebook
  • {% endif %} {% if settings.social_pinterest_link != blank %}
  • Pinterest
  • {% endif %} {% if settings.social_google_plus_link != blank %}
  • Google
  • {% endif %} {% if settings.social_instagram_link != blank %}
  • Instagram
  • {% endif %} {% if settings.social_snapchat_link != blank %}
  • Snapchat
  • {% endif %} {% if settings.social_tumblr_link != blank %}
  • Tumblr
  • {% endif %} {% if settings.social_youtube_link != blank %}
  • YouTube
  • {% endif %} {% if settings.social_vimeo_link != blank %}
  • Vimeo
  • {% endif %} {% if settings.social_fancy_link != blank %}
  • Fancy
  • {% endif %}
{% endif %}

  • © 2017-{{ 'now' | date: '%Y' }} {{ shop.name | link_to: routes.root_url }}
  • {{ powered_by_link }}

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

{{ 'general.payment.method' | t }}
    {%- for type in shop.enabled_payment_types -%}
  • {{ type | payment_type_svg_tag: class: 'icon' }}
  • {%- endfor -%}
{%- endunless -%} {%- endif -%}

{% schema %}
{
“name”: {
“da”: “Sidefod”,
“de”: “Fußzeile”,
“en”: “Footer”,
“es”: “Pie de página”,
“fi”: “Alatunniste”,
“fr”: “Pied de page”,
“hi”: “फुटर”,
“it”: “Footer”,
“ja”: “フッター”,
“ko”: “바닥글”,
“nb”: “Footer”,
“nl”: “Voettekst”,
“pt-BR”: “Rodapé”,
“pt-PT”: “Rodapé”,
“sv”: “Sidfot”,
“th”: “ส่วนท้าย”,
“zh-CN”: “页脚”,
“zh-TW”: “頁尾”
},
“class”: “footer-section”,
“settings”: [
{
“type”: “checkbox”,
“id”: “social_enabled”,
“label”: {
“da”: “Vis ikoner for sociale medier”,
“de”: “Social-Media-Symbole anzeigen”,
“en”: “Show social media icons”,
“es”: “Mostrar iconos de redes sociales”,
“fi”: “Näytä some-kuvakkeet”,
“fr”: “Afficher les icônes des médias sociaux”,
“hi”: “सोशल मीडिया आइकन दिखाएं”,
“it”: “Mostra icone social media”,
“ja”: “ソーシャルメディアのアイコンを表示する”,
“ko”: “소셜 미디어 아이콘 표시”,
“nb”: “Vis ikoner for sosiale medier”,
“nl”: “Pictogrammen social media weergeven”,
“pt-BR”: “Exibir ícones de redes sociais”,
“pt-PT”: “Mostrar ícones de redes sociais”,
“sv”: “sociala medier-ikoner”,
“th”: “แสดงไอคอนโซเชียลมีเดีย”,
“zh-CN”: “显示社交媒体图标”,
“zh-TW”: “顯示社群媒體圖示”
},
“info”: {
“da”: “Tilføj konti i afsnittet Sociale medier”,
“de”: “Konten im Social-Media-Abschnitt hinzufügen”,
“en”: “Add accounts in Social media section”,
“es”: “Agregar cuentas en la sección de redes sociales”,
“fi”: “Lisää tilejä sosiaalisen median osiossa”,
“fr”: “Ajouter les comptes dans la section Médias sociaux”,
“hi”: “सोशल मीडिया सेक्शन में खाते जोड़ें”,
“it”: “Aggiungi account nella sezione Social media”,
“ja”: “ソーシャルメディアのセクションにアカウントを追加する”,
“ko”: “소셜 미디어 섹션에 계정 추가”,
“nb”: “Legg til kontoer i Sosiale medier-delen”,
“nl”: “Accounts toevoegen in deel Social media”,
“pt-BR”: “Adicionar contas na seção Redes sociais”,
“pt-PT”: “Adicionar contas na secção de Redes sociais”,
“sv”: “Lägg till konton i avsnittet Social media”,
“th”: “เพิ่มบัญชีผู้ใช้ในส่วนโซเชียลมีเดีย”,
“zh-CN”: “在社交媒体部分中添加账户”,
“zh-TW”: “在社群媒體區段新增帳戶”
}
},
{
“type”: “checkbox”,
“id”: “show_payment_icons”,
“label”: {
“da”: “Vis betalingsikoner”,
“de”: “Zahlungssymbole anzeigen”,
“en”: “Show payment icons”,
“es”: “Mostrar iconos de pago”,
“fi”: “Näytä maksukuvakkeet”,
“fr”: “Afficher les icônes de paiement”,
“hi”: “भुगतान आइकन दिखाएं”,
“it”: “Mostra le icone di pagamento”,
“ja”: “支払いアイコンを表示する”,
“ko”: “결제 아이콘 표시”,
“nb”: “Vis betalingsikoner”,
“nl”: “Betalingspictogrammen weergeven”,
“pt-BR”: “Exibir ícones de pagamento”,
“pt-PT”: “Mostrar ícones de pagamento”,
“sv”: “Visa betalningsikoner”,
“th”: “แสดงไอคอนการชำระเงิน”,
“zh-CN”: “显示付款图标”,
“zh-TW”: “顯示付款圖示”
},
“default”: true
},
{
“type”: “link_list”,
“id”: “legal_menu”,
“label”: {
“da”: “Juridisk menu”,
“de”: “Rechtliches Menü”,
“en”: “Legal menu”,
“es”: “Menú legal”,
“fi”: “Oikeustieto-valikko”,
“fr”: “Menu juridique”,
“hi”: “कानूनी मेनू”,
“it”: “Menu legale”,
“ja”: “リーガルメニュー”,
“ko”: “법률 메뉴”,
“nb”: “Juridisk meny”,
“nl”: “Menu Juridisch”,
“pt-BR”: “Menu Aviso legal”,
“pt-PT”: “Menu legal”,
“sv”: “Juridisk meny”,
“th”: “เมนูกฎหมาย”,
“zh-CN”: “法律菜单”,
“zh-TW”: “法律選單”
}
}
],
“max_blocks”: 9,
“blocks”: [
{
“type”: “menu”,
“name”: {
“da”: “Menu”,
“de”: “Menü”,
“en”: “Menu”,
“es”: “Menú”,
“fi”: “Valikko”,
“fr”: “Menu”,
“hi”: “मेनू”,
“it”: “Menu”,
“ja”: “メニュー”,
“ko”: “메뉴”,
“nb”: “Meny”,
“nl”: “Menu”,
“pt-BR”: “Menu”,
“pt-PT”: “Menu”,
“sv”: “Meny”,
“th”: “เมนู”,
“zh-CN”: “菜单”,
“zh-TW”: “選單”
},
“settings”: [
{
“type”: “text”,
“id”: “title”,
“label”: {
“da”: “Overskrift”,
“de”: “Titel”,
“en”: “Heading”,
“es”: “Título”,
“fi”: “Otsake”,
“fr”: “Titre”,
“hi”: “शीर्षक”,
“it”: “Heading”,
“ja”: “見出し”,
“ko”: “제목”,
“nb”: “Overskrift”,
“nl”: “Kop”,
“pt-BR”: “Título”,
“pt-PT”: “Título”,
“sv”: “Rubrik”,
“th”: “ส่วนหัว”,
“zh-CN”: “标题”,
“zh-TW”: “標題”
},
“default”: {
“da”: “Hurtige links”,
“de”: “Quick-Links”,
“en”: “Quick links”,
“es”: “Enlaces rápidos”,
“fi”: “Pikalinkit”,
“fr”: “Liens rapides”,
“hi”: “त्वरित लिंक”,
“it”: “Link rapidi”,
“ja”: “クイックリンク”,
“ko”: “빠른 링크”,
“nb”: “Hurtigkoblinger”,
“nl”: “Snelle links”,
“pt-BR”: “Links rápidos”,
“pt-PT”: “Ligações rápidas”,
“sv”: “Snabblänkar”,
“th”: “ลิงก์ด่วน”,
“zh-CN”: “快速链接”,
“zh-TW”: “快速連結”
}
},
{
“type”: “link_list”,
“id”: “menu”,
“label”: {
“da”: “Menu”,
“de”: “Menü”,
“en”: “Menu”,
“es”: “Menú”,
“fi”: “Valikko”,
“fr”: “Menu”,
“hi”: “मेनू”,
“it”: “Menu”,
“ja”: “メニュー”,
“ko”: “메뉴”,
“nb”: “Meny”,
“nl”: “Menu”,
“pt-BR”: “Menu”,
“pt-PT”: “Menu”,
“sv”: “Meny”,
“th”: “เมนู”,
“zh-CN”: “菜单”,
“zh-TW”: “選單”
}
},
{
“type”: “select”,
“id”: “width”,
“label”: {
“da”: “Containerbredde”,
“de”: “Breite des Elements”,
“en”: “Container width”,
“es”: “Ancho del contenedor”,
“fi”: “Säiliön leveys”,
“fr”: “Largeur du conteneur”,
“hi”: “कंटेनर की चौड़ाई”,
“it”: “Larghezza contenitore”,
“ja”: “コンテナーの幅”,
“ko”: “컨테이너 폭”,
“nb”: “Beholderbredde”,
“nl”: “Containerbreedte”,
“pt-BR”: “Largura do contêiner”,
“pt-PT”: “Largura do recipiente”,
“sv”: “Container-bredd”,
“th”: “ความกว้างของความจุ”,
“zh-CN”: “容器宽度”,
“zh-TW”: “容器寬度”
},
“default”: “16%”,
“options”: [
{
“value”: “16%”,
“label”: {
“da”: “16 %”,
“de”: “16 %”,
“en”: “16%”,
“es”: “16%”,
“fi”: “16%”,
“fr”: “16 %”,
“hi”: “16%”,
“it”: “16%”,
“ja”: “16%”,
“ko”: “16%”,
“nb”: “16 %”,
“nl”: “16%”,
“pt-BR”: “16%”,
“pt-PT”: “16%”,
“sv”: “16%”,
“th”: “16%”,
“zh-CN”: “16%”,
“zh-TW”: “16%”
}
},
{
“value”: “25%”,
“label”: {
“da”: “25 %”,
“de”: “25%”,
“en”: “25%”,
“es”: “25%”,
“fi”: “25 %”,
“fr”: “25 %”,
“hi”: “25%”,
“it”: “25%”,
“ja”: “25%”,
“ko”: “25%”,
“nb”: “25 %”,
“nl”: “25%”,
“pt-BR”: “25%”,
“pt-PT”: “25%”,
“sv”: “25 %”,
“th”: “25%”,
“zh-CN”: “25%”,
“zh-TW”: “25%”
}
},
{
“value”: “33%”,
“label”: {
“da”: “33 %”,
“de”: “33%”,
“en”: “33%”,
“es”: “33%”,
“fi”: “33 %”,
“fr”: “33 %”,
“hi”: “33%”,
“it”: “33%”,
“ja”: “33%”,
“ko”: “33%”,
“nb”: “33 %”,
“nl”: “33%”,
“pt-BR”: “33%”,
“pt-PT”: “33%”,
“sv”: “33 %”,
“th”: “33%”,
“zh-CN”: “33%”,
“zh-TW”: “33%”
}
},
{
“value”: “50%”,
“label”: {
“da”: “50 %”,
“de”: “50%”,
“en”: “50%”,
“es”: “50%”,
“fi”: “50 %”,
“fr”: “50 %”,
“hi”: “50%”,
“it”: “50%”,
“ja”: “50%”,
“ko”: “50%”,
“nb”: “50 %”,
“nl”: “50%”,
“pt-BR”: “50%”,
“pt-PT”: “50%”,
“sv”: “50 %”,
“th”: “50%”,
“zh-CN”: “50%”,
“zh-TW”: “50%”
}
},
{
“value”: “66%”,
“label”: {
“da”: “66 %”,
“de”: “66%”,
“en”: “66%”,
“es”: “66%”,
“fi”: “66 %”,
“fr”: “66 %”,
“hi”: “66%”,
“it”: “66%”,
“ja”: “66%”,
“ko”: “66%”,
“nb”: “66 %”,
“nl”: “66%”,
“pt-BR”: “66%”,
“pt-PT”: “66%”,
“sv”: “66 %”,
“th”: “66%”,
“zh-CN”: “66%”,
“zh-TW”: “66%”
}
},
{
“value”: “75%”,
“label”: {
“da”: “75 %”,
“de”: “75%”,
“en”: “75%”,
“es”: “75%”,
“fi”: “75 %”,
“fr”: “75 %”,
“hi”: “75%”,
“it”: “75%”,
“ja”: “75%”,
“ko”: “75%”,
“nb”: “75 %”,
“nl”: “75%”,
“pt-BR”: “75%”,
“pt-PT”: “75%”,
“sv”: “75 %”,
“th”: “75%”,
“zh-CN”: “75%”,
“zh-TW”: “75%”
}
},
{
“value”: “100%”,
“label”: {
“da”: “100 %”,
“de”: “100%”,
“en”: “100%”,
“es”: “100%”,
“fi”: “100 %”,
“fr”: “100 %”,
“hi”: “100%”,
“it”: “100%”,
“ja”: “100%”,
“ko”: “100%”,
“nb”: “100 %”,
“nl”: “100%”,
“pt-BR”: “100%”,
“pt-PT”: “100%”,
“sv”: “100 %”,
“th”: “100%”,
“zh-CN”: “100%”,
“zh-TW”: “100%”
}
}
]
}
]
},
{
“type”: “text”,
“name”: {
“da”: “RTF”,
“de”: “Rich Text”,
“en”: “Rich text”,
“es”: “Texto enriquecido”,
“fi”: “Rich text”,
“fr”: “Texte enrichi”,
“hi”: “रिच टेक्स्ट”,
“it”: “Rich text”,
“ja”: “リッチテキスト”,
“ko”: “서식있는 텍스트”,
“nb”: “Rich text”,
“nl”: “Tekst met opmaak”,
“pt-BR”: “Rich text”,
“pt-PT”: “Texto formatado”,
“sv”: “Rich text”,
“th”: “Rich Text”,
“zh-CN”: “格式文本”,
“zh-TW”: “RTF 文字”
},
“settings”: [
{
“type”: “text”,
“id”: “title”,
“label”: {
“da”: “Overskrift”,
“de”: “Titel”,
“en”: “Heading”,
“es”: “Título”,
“fi”: “Otsake”,
“fr”: “Titre”,
“hi”: “शीर्षक”,
“it”: “Heading”,
“ja”: “見出し”,
“ko”: “제목”,
“nb”: “Overskrift”,
“nl”: “Kop”,
“pt-BR”: “Título”,
“pt-PT”: “Título”,
“sv”: “Rubrik”,
“th”: “ส่วนหัว”,
“zh-CN”: “标题”,
“zh-TW”: “標題”
},
“default”: {
“da”: “Kontakt os”,
“de”: “Kontakt aufnehmen”,
“en”: “Get in touch”,
“es”: “Ponerse en contacto”,
“fi”: “Ota yhteyttä”,
“fr”: “Entrer en contact”,
“hi”: “संपर्क में रहें”,
“it”: “Contattaci”,
“ja”: “お問い合わせはこちらから”,
“ko”: “연락하기”,
“nb”: “Ta kontakt”,
“nl”: “Neem contact op”,
“pt-BR”: “Entre em contato”,
“pt-PT”: “Contacte”,
“sv”: “Komma i kontakt”,
“th”: “ติดต่อ”,
“zh-CN”: “取得联系”,
“zh-TW”: “請與我們聯絡”
}
},
{
“type”: “richtext”,
“id”: “richtext”,
“label”: {
“da”: “Tekst”,
“de”: “Text”,
“en”: “Text”,
“es”: “Texto”,
“fi”: “Teksti”,
“fr”: “Texte”,
“hi”: “टेक्स्ट”,
“it”: “Testo”,
“ja”: “テキスト”,
“ko”: “텍스트”,
“nb”: “Tekst”,
“nl”: “Tekst”,
“pt-BR”: “Texto”,
“pt-PT”: “Texto”,
“sv”: “Text”,
“th”: “ข้อความ”,
“zh-CN”: “文本”,
“zh-TW”: “文字”
},
“default”: {
“da”: “

Brug denne tekst til at dele oplysninger om dit brand med dine kunder.

”,
“de”: “

Mit diesem Text können Sie Ihre Kunden über Ihre Marke informieren.

”,
“en”: “

Use this text to share information about your brand with your customers.

”,
“es”: “

Usa este texto para compartir información sobre tu marca con tus clientes.

”,
“fi”: “

Tätä tekstiä voidaan käyttää brändiäsi koskevien tietojen jakamiseen asiakkaille.

”,
“fr”: “

Utilisez ce texte pour partager des informations sur votre marque avec vos clients.

”,
“hi”: “

अपने ग्राहकों के साथ अपने ब्रैंड के बारे में जानकारी शेयर करने के लिए इस टेक्स्ट का उपयोग करें.

”,
“it”: “

Utilizza questo spazio per condividere informazioni sul tuo brand con i clienti.

”,
“ja”: “

このテキストを使用して、あなたのブランドに関する情報をお客様と共有します。

”,
“ko”: “

이 텍스트는 고객의 브랜드에 대한 정보를 공유하는데 사용하십시오.

”,
“nb”: “

Bruk denne teksten til å dele informasjon om merkevaren din med kundene dine.

”,
“nl”: “

Gebruik deze tekst om informatie over je merk met je klanten te delen.

”,
“pt-BR”: “

Use este texto para compartilhar informações sobre sua marca com seus clientes.

”,
“pt-PT”: “

Utilize este texto para partilhar informações sobre a sua marca com os seus clientes.

”,
“sv”: “

Använd den här texten för att dela information om ditt varumärke med dina kunder.

”,
“th”: “

ใช้ข้อความนี้เพื่อแชร์ข้อมูลเกี่ยวกับแบรนด์และลูกค้าของคุณ

”,
“zh-CN”: “

使用此文本与您的客户分享有关您的品牌的信息。

”,
“zh-TW”: “

請利用此段文字跟顧客分享您的品牌資訊。


}
},
{
“type”: “select”,
“id”: “width”,
“label”: {
“da”: “Containerbredde”,
“de”: “Breite des Elements”,
“en”: “Container width”,
“es”: “Ancho del contenedor”,
“fi”: “Säiliön leveys”,
“fr”: “Largeur du conteneur”,
“hi”: “कंटेनर की चौड़ाई”,
“it”: “Larghezza contenitore”,
“ja”: “コンテナーの幅”,
“ko”: “컨테이너 폭”,
“nb”: “Beholderbredde”,
“nl”: “Containerbreedte”,
“pt-BR”: “Largura do contêiner”,
“pt-PT”: “Largura do recipiente”,
“sv”: “Container-bredd”,
“th”: “ความกว้างของความจุ”,
“zh-CN”: “容器宽度”,
“zh-TW”: “容器寬度”
},
“default”: “50%”,
“options”: [
{
“value”: “16%”,
“label”: {
“da”: “16 %”,
“de”: “16 %”,
“en”: “16%”,
“es”: “16%”,
“fi”: “16%”,
“fr”: “16 %”,
“hi”: “16%”,
“it”: “16%”,
“ja”: “16%”,
“ko”: “16%”,
“nb”: “16 %”,
“nl”: “16%”,
“pt-BR”: “16%”,
“pt-PT”: “16%”,
“sv”: “16%”,
“th”: “16%”,
“zh-CN”: “16%”,
“zh-TW”: “16%”
}
},
{
“value”: “25%”,
“label”: {
“da”: “25 %”,
“de”: “25%”,
“en”: “25%”,
“es”: “25%”,
“fi”: “25 %”,
“fr”: “25 %”,
“hi”: “25%”,
“it”: “25%”,
“ja”: “25%”,
“ko”: “25%”,
“nb”: “25 %”,
“nl”: “25%”,
“pt-BR”: “25%”,
“pt-PT”: “25%”,
“sv”: “25 %”,
“th”: “25%”,
“zh-CN”: “25%”,
“zh-TW”: “25%”
}
},
{
“value”: “33%”,
“label”: {
“da”: “33 %”,
“de”: “33%”,
“en”: “33%”,
“es”: “33%”,
“fi”: “33 %”,
“fr”: “33 %”,
“hi”: “33%”,
“it”: “33%”,
“ja”: “33%”,
“ko”: “33%”,
“nb”: “33 %”,
“nl”: “33%”,
“pt-BR”: “33%”,
“pt-PT”: “33%”,
“sv”: “33 %”,
“th”: “33%”,
“zh-CN”: “33%”,
“zh-TW”: “33%”
}
},
{
“value”: “50%”,
“label”: {
“da”: “50 %”,
“de”: “50%”,
“en”: “50%”,
“es”: “50%”,
“fi”: “50 %”,
“fr”: “50 %”,
“hi”: “50%”,
“it”: “50%”,
“ja”: “50%”,
“ko”: “50%”,
“nb”: “50 %”,
“nl”: “50%”,
“pt-BR”: “50%”,
“pt-PT”: “50%”,
“sv”: “50 %”,
“th”: “50%”,
“zh-CN”: “50%”,
“zh-TW”: “50%”
}
},
{
“value”: “66%”,
“label”: {
“da”: “66 %”,
“de”: “66%”,
“en”: “66%”,
“es”: “66%”,
“fi”: “66 %”,
“fr”: “66 %”,
“hi”: “66%”,
“it”: “66%”,
“ja”: “66%”,
“ko”: “66%”,
“nb”: “66 %”,
“nl”: “66%”,
“pt-BR”: “66%”,
“pt-PT”: “66%”,
“sv”: “66 %”,
“th”: “66%”,
“zh-CN”: “66%”,
“zh-TW”: “66%”
}
},
{
“value”: “75%”,
“label”: {
“da”: “75 %”,
“de”: “75%”,
“en”: “75%”,
“es”: “75%”,
“fi”: “75 %”,
“fr”: “75 %”,
“hi”: “75%”,
“it”: “75%”,
“ja”: “75%”,
“ko”: “75%”,
“nb”: “75 %”,
“nl”: “75%”,
“pt-BR”: “75%”,
“pt-PT”: “75%”,
“sv”: “75 %”,
“th”: “75%”,
“zh-CN”: “75%”,
“zh-TW”: “75%”
}
},
{
“value”: “100%”,
“label”: {
“da”: “100 %”,
“de”: “100%”,
“en”: “100%”,
“es”: “100%”,
“fi”: “100 %”,
“fr”: “100 %”,
“hi”: “100%”,
“it”: “100%”,
“ja”: “100%”,
“ko”: “100%”,
“nb”: “100 %”,
“nl”: “100%”,
“pt-BR”: “100%”,
“pt-PT”: “100%”,
“sv”: “100 %”,
“th”: “100%”,
“zh-CN”: “100%”,
“zh-TW”: “100%”
}
}
]
}
]
},
{
“type”: “newsletter”,
“name”: {
“da”: “Tilmelding til nyhedsbrev”,
“de”: “Newsletter-Anmeldung”,
“en”: “Newsletter signup”,
“es”: “Suscripción al boletín”,
“fi”: “Uutiskirjeen tilaus”,
“fr”: “Inscription”,
“hi”: “न्यूज़लेटर साइनअप”,
“it”: “Iscrizione newsletter”,
“ja”: “ニュースレターの登録”,
“ko”: “뉴스레터 신청”,
“nb”: “Registrering for nyhetsbrev”,
“nl”: “Nieuwsbriefaanmelding”,
“pt-BR”: “Assinatura da newsletter”,
“pt-PT”: “Registo na newsletter”,
“sv”: “Nyhetsbrevsregistrering”,
“th”: “การสมัครรับจดหมายข่าว”,
“zh-CN”: “新闻通讯注册”,
“zh-TW”: “訂閱電子報”
},
“limit”: 1,
“settings”: [
{
“type”: “text”,
“id”: “title”,
“label”: {
“da”: “Overskrift”,
“de”: “Titel”,
“en”: “Heading”,
“es”: “Título”,
“fi”: “Otsake”,
“fr”: “Titre”,
“hi”: “शीर्षक”,
“it”: “Heading”,
“ja”: “見出し”,
“ko”: “제목”,
“nb”: “Overskrift”,
“nl”: “Kop”,
“pt-BR”: “Título”,
“pt-PT”: “Título”,
“sv”: “Rubrik”,
“th”: “ส่วนหัว”,
“zh-CN”: “标题”,
“zh-TW”: “標題”
},
“default”: {
“da”: “Nyhedsbrev”,
“de”: “Newsletter”,
“en”: “Newsletter”,
“es”: “Boletín”,
“fi”: “Uutiskirje”,
“fr”: “Newsletter”,
“hi”: “न्यूज़लेटर”,
“it”: “Newsletter”,
“ja”: “ニュースレター”,
“ko”: “뉴스레터”,
“nb”: “Nyhetsbrev”,
“nl”: “Nieuwsbrief”,
“pt-BR”: “Newsletter”,
“pt-PT”: “Newsletter”,
“sv”: “Nyhetsbrev”,
“th”: “จดหมายข่าว”,
“zh-CN”: “新闻通讯”,
“zh-TW”: “電子報”
}
},
{
“type”: “richtext”,
“id”: “subtext”,
“label”: {
“da”: “Undertekst”,
“de”: “Subtext”,
“en”: “Subtext”,
“es”: “Subtexto”,
“fi”: “Alateksti”,
“fr”: “Sous-texte”,
“hi”: “सबटेक्स्ट”,
“it”: “Sottotesto”,
“ja”: “サブテキスト”,
“ko”: “하위 텍스트”,
“nb”: “Undertekst”,
“nl”: “Subtekst”,
“pt-BR”: “Subtexto”,
“pt-PT”: “Subtexto”,
“sv”: “Undertext”,
“th”: “ข้อความรอง”,
“zh-CN”: “子文本”,
“zh-TW”: “子文字”
},
“default”: {
“da”: “

Reklamer, nye produkter og salg. Direkte i din indbakke.

”,
“de”: “

Werbeaktionen, neue Produkte und Sonderangebote. Direkt in Ihrem Posteingang.

”,
“en”: “

Promotions, new products and sales. Directly to your inbox.

”,
“es”: “

Promociones, nuevos productos y ventas. Directamente a tu bandeja de entrada.

”,
“fi”: “

Kampanjat, uudet tuotteet ja myynti. Suoraan saapuneet-kansioosi

”,
“fr”: “

Promotions, nouveaux produits et soldes. Directement dans votre boîte de réception.

”,
“hi”: “

प्रमोशन, नए उत्पाद और सेल. सीधे आपके इनबॉक्स में.

”,
“it”: “

Promozioni, nuovi prodotti e offerte. Direttamente nella tua casella di posta.

”,
“ja”: “

新商品やセール情報などのお得な情報をお届けします。

”,
“ko”: “

프로모션, 신제품, 판매. 받은 편지함으로 바로 이동.

”,
“nb”: “

Kampanjer, nye produkter og salg. Direkte i innboksen din.

”,
“nl”: “

Promoties, nieuwe producten en uitverkoop rechtstreeks in je inbox.

”,
“pt-BR”: “

Promoções, novos produtos e ofertas, diretamente em sua caixa de entrada.

”,
“pt-PT”: “

Promoções, novos produtos e ofertas. Diretamente na sua caixa de entrada.

”,
“sv”: “

Kampanjer, nya produkter och försäljning. Direkt till din inkorg.

”,
“th”: “

โปรโมชัน สินค้าใหม่ และการลดราคา ตรงสู่กล่องจดหมายเข้าของคุณ

”,
“zh-CN”: “

促销、新产品和销售。直接发送到您的收件箱。

”,
“zh-TW”: “

讓您直接在收件匣內收取促銷活動、最新產品和特賣活動訊息。


}
},
{
“type”: “paragraph”,
“content”: {
“da”: “Alle kunder, der tilmelder sig, får oprettet en konto i Shopify. Se kunder”,
“de”: “Alle Kunden, die sich eintragen, bekommen ein Konto in Shopify. Kunden ansehen”,
“en”: “Any customers who sign up will have an account created for them in Shopify. View customers”,
“es”: “Todos los clientes que se registren tendrán una cuenta creada para ellos en Shopify. Ver clientes”,
“fi”: “Tilaaville asiakkaille luodaan tili Shopify-palvelussa. Näytä asiakkaat”,
“fr”: “Tous les clients qui s’inscrivent auront un compte créé pour eux sur Shopify. Voir les clients”,
“hi”: “साइन अप करने वाले कोई भी ग्राहक, के पास Shopify में खाता बनाया जाएगा. ग्राहक देखें”,
“it”: “Qualsiasi cliente che si iscrive avrà un account creato appositamente su Shopify. Visualizza clienti”,
“ja”: “サインアップしたお客様は、Shopifyでアカウントが作成されます。お客様を表示”,
“ko”: “가입한 고객은 Shopify에서 생성된 계정을 보유하게 됩니다. [고객보기](/admin/customers? query=& accepts_marketing=1)”,
“nb”: “Alle kunder som melder seg på, vil få opprettet en konto i Shopify. Se kunder”,
“nl”: “Voor alle klanten die zich aanmelden, wordt een Shopify-account gemaakt. Klanten weergeven”,
“pt-BR”: “Todos os clientes que se inscreverem terão uma conta criada para eles na Shopify. Visualizar clientes”,
“pt-PT”: “Será criada uma conta na Shopify para todos os clientes que se registarem. Ver clientes”,
“sv”: “Alla kunder som registrerar sig kommer att få ett konto skapat i Shopify. [Visa kunder](/ admin / kunder? Query = & accepts_marketing = 1)”,
“th”: “ระบบจะสร้างบัญชีผู้ใช้ใน Shopify ให้แก่ลูกค้ารายใดก็ตามที่ลงทะเบียน ดูลูกค้า”,
“zh-CN”: “任何注册用户都将在 Shopify 中拥有一个为他们创建的账户。查看客户”,
“zh-TW”: “顧客註冊後就可以擁有 Shopify 的帳戶。檢視顧客
}
},
{
“type”: “select”,
“id”: “width”,
“label”: {
“da”: “Containerbredde”,
“de”: “Breite des Elements”,
“en”: “Container width”,
“es”: “Ancho del contenedor”,
“fi”: “Säiliön leveys”,
“fr”: “Largeur du conteneur”,
“hi”: “कंटेनर की चौड़ाई”,
“it”: “Larghezza contenitore”,
“ja”: “コンテナーの幅”,
“ko”: “컨테이너 폭”,
“nb”: “Beholderbredde”,
“nl”: “Containerbreedte”,
“pt-BR”: “Largura do contêiner”,
“pt-PT”: “Largura do recipiente”,
“sv”: “Container-bredd”,
“th”: “ความกว้างของความจุ”,
“zh-CN”: “容器宽度”,
“zh-TW”: “容器寬度”
},
“default”: “33%”,
“options”: [
{
“value”: “25%”,
“label”: {
“da”: “25 %”,
“de”: “25%”,
“en”: “25%”,
“es”: “25%”,
“fi”: “25 %”,
“fr”: “25 %”,
“hi”: “25%”,
“it”: “25%”,
“ja”: “25%”,
“ko”: “25%”,
“nb”: “25 %”,
“nl”: “25%”,
“pt-BR”: “25%”,
“pt-PT”: “25%”,
“sv”: “25 %”,
“th”: “25%”,
“zh-CN”: “25%”,
“zh-TW”: “25%”
}
},
{
“value”: “33%”,
“label”: {
“da”: “33 %”,
“de”: “33%”,
“en”: “33%”,
“es”: “33%”,
“fi”: “33 %”,
“fr”: “33 %”,
“hi”: “33%”,
“it”: “33%”,
“ja”: “33%”,
“ko”: “33%”,
“nb”: “33 %”,
“nl”: “33%”,
“pt-BR”: “33%”,
“pt-PT”: “33%”,
“sv”: “33 %”,
“th”: “33%”,
“zh-CN”: “33%”,
“zh-TW”: “33%”
}
},
{
“value”: “50%”,
“label”: {
“da”: “50 %”,
“de”: “50%”,
“en”: “50%”,
“es”: “50%”,
“fi”: “50 %”,
“fr”: “50 %”,
“hi”: “50%”,
“it”: “50%”,
“ja”: “50%”,
“ko”: “50%”,
“nb”: “50 %”,
“nl”: “50%”,
“pt-BR”: “50%”,
“pt-PT”: “50%”,
“sv”: “50 %”,
“th”: “50%”,
“zh-CN”: “50%”,
“zh-TW”: “50%”
}
},
{
“value”: “66%”,
“label”: {
“da”: “66 %”,
“de”: “66%”,
“en”: “66%”,
“es”: “66%”,
“fi”: “66 %”,
“fr”: “66 %”,
“hi”: “66%”,
“it”: “66%”,
“ja”: “66%”,
“ko”: “66%”,
“nb”: “66 %”,
“nl”: “66%”,
“pt-BR”: “66%”,
“pt-PT”: “66%”,
“sv”: “66 %”,
“th”: “66%”,
“zh-CN”: “66%”,
“zh-TW”: “66%”
}
},
{
“value”: “75%”,
“label”: {
“da”: “75 %”,
“de”: “75%”,
“en”: “75%”,
“es”: “75%”,
“fi”: “75 %”,
“fr”: “75 %”,
“hi”: “75%”,
“it”: “75%”,
“ja”: “75%”,
“ko”: “75%”,
“nb”: “75 %”,
“nl”: “75%”,
“pt-BR”: “75%”,
“pt-PT”: “75%”,
“sv”: “75 %”,
“th”: “75%”,
“zh-CN”: “75%”,
“zh-TW”: “75%”
}
},
{
“value”: “100%”,
“label”: {
“da”: “100 %”,
“de”: “100%”,
“en”: “100%”,
“es”: “100%”,
“fi”: “100 %”,
“fr”: “100 %”,
“hi”: “100%”,
“it”: “100%”,
“ja”: “100%”,
“ko”: “100%”,
“nb”: “100 %”,
“nl”: “100%”,
“pt-BR”: “100%”,
“pt-PT”: “100%”,
“sv”: “100 %”,
“th”: “100%”,
“zh-CN”: “100%”,
“zh-TW”: “100%”
}
}
]
}
]
}
]
}
{% endschema %}

{% capture theme_settings_link %}{{ ‘layout.footer.theme_settings’ | t }}{% endcapture %}

{% for block in section.blocks %}

{% case block.settings.width %}
{% when ‘16%’ %}
{%- assign block_width = ‘small–one-whole two-twelfths’ -%}
{% when ‘25%’ %}
{%- assign block_width = ‘small–one-whole one-quarter’ -%}
{% when ‘33%’ %}
{%- assign block_width = ‘small–one-whole one-third’ -%}
{% when ‘50%’ %}
{%- assign block_width = ‘small–one-whole one-half’ -%}
{% when ‘66%’ %}
{%- assign block_width = ‘small–one-whole two-thirds’ -%}
{% when ‘75%’ %}
{%- assign block_width = ‘small–one-whole three-quarters’ -%}
{% when ‘100%’ %}
{%- assign block_width = ‘one-whole’ -%}
{% endcase %}

{% if block.settings.title %}

{{ block.settings.title | escape }}

{% endif %}

{% case block.type %}

{% when ‘menu’ %}

    {% for link in linklists[block.settings.menu].links %}
  • {{ link.title }}
  • {% else %} {% capture theme_settings_footer_linklist_path %}Footer > Quick links link list{% endcapture %} {{ 'layout.footer.instructions_for_linklist_html' | t: theme_settings_link: theme_settings_link, theme_settings_footer_linklist_path: theme_settings_footer_linklist_path }} {% endfor %}

{% when ‘text’ %}

{% if block.settings.richtext != blank %}
{{ block.settings.richtext }}
{% else %}

{{ 'layout.footer.instructions_for_text_content_html' | t: theme_settings_link: theme_settings_link }}

{% endif %}

{% when ‘newsletter’ %}

{% if block.settings.subtext != blank %} {{ block.settings.subtext }} {% endif %}
{% include 'newsletter-form' with button: 'secondary' %} {% endcase %}
{% endfor %}

{% if section.settings.social_enabled or section.settings.legal_menu != blank %}


{% endif %}
{% if section.settings.legal_menu != blank %}
    {% for link in linklists[section.settings.legal_menu].links %}
  • {{ link.title }}
  • {% endfor %}
{% endif %} {% if section.settings.social_enabled %}
    {% if settings.social_twitter_link != blank %}
  • Twitter
  • {% endif %} {% if settings.social_facebook_link != blank %}
  • Facebook
  • {% endif %} {% if settings.social_pinterest_link != blank %}
  • Pinterest
  • {% endif %} {% if settings.social_google_plus_link != blank %}
  • Google
  • {% endif %} {% if settings.social_instagram_link != blank %}
  • Instagram
  • {% endif %} {% if settings.social_snapchat_link != blank %}
  • Snapchat
  • {% endif %} {% if settings.social_tumblr_link != blank %}
  • Tumblr
  • {% endif %} {% if settings.social_youtube_link != blank %}
  • YouTube
  • {% endif %} {% if settings.social_vimeo_link != blank %}
  • Vimeo
  • {% endif %} {% if settings.social_fancy_link != blank %}
  • Fancy
  • {% endif %}
{% endif %}

  • © 2017-{{ 'now' | date: '%Y' }} {{ shop.name | link_to: routes.root_url }}
  • {{ powered_by_link }}

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

{{ 'general.payment.method' | t }}
    {%- for type in shop.enabled_payment_types -%}
  • {{ type | payment_type_svg_tag: class: 'icon' }}
  • {%- endfor -%}
{%- endunless -%} {%- endif -%}

{% schema %}
{
“name”: {
“da”: “Sidefod”,
“de”: “Fußzeile”,
“en”: “Footer”,
“es”: “Pie de página”,
“fi”: “Alatunniste”,
“fr”: “Pied de page”,
“hi”: “फुटर”,
“it”: “Footer”,
“ja”: “フッター”,
“ko”: “바닥글”,
“nb”: “Footer”,
“nl”: “Voettekst”,
“pt-BR”: “Rodapé”,
“pt-PT”: “Rodapé”,
“sv”: “Sidfot”,
“th”: “ส่วนท้าย”,
“zh-CN”: “页脚”,
“zh-TW”: “頁尾”
},
“class”: “footer-section”,
“settings”: [
{
“type”: “checkbox”,
“id”: “social_enabled”,
“label”: {
“da”: “Vis ikoner for sociale medier”,
“de”: “Social-Media-Symbole anzeigen”,
“en”: “Show social media icons”,
“es”: “Mostrar iconos de redes sociales”,
“fi”: “Näytä some-kuvakkeet”,
“fr”: “Afficher les icônes des médias sociaux”,
“hi”: “सोशल मीडिया आइकन दिखाएं”,
“it”: “Mostra icone social media”,
“ja”: “ソーシャルメディアのアイコンを表示する”,
“ko”: “소셜 미디어 아이콘 표시”,
“nb”: “Vis ikoner for sosiale medier”,
“nl”: “Pictogrammen social media weergeven”,
“pt-BR”: “Exibir ícones de redes sociais”,
“pt-PT”: “Mostrar ícones de redes sociais”,
“sv”: “sociala medier-ikoner”,
“th”: “แสดงไอคอนโซเชียลมีเดีย”,
“zh-CN”: “显示社交媒体图标”,
“zh-TW”: “顯示社群媒體圖示”
},
“info”: {
“da”: “Tilføj konti i afsnittet Sociale medier”,
“de”: “Konten im Social-Media-Abschnitt hinzufügen”,
“en”: “Add accounts in Social media section”,
“es”: “Agregar cuentas en la sección de redes sociales”,
“fi”: “Lisää tilejä sosiaalisen median osiossa”,
“fr”: “Ajouter les comptes dans la section Médias sociaux”,
“hi”: “सोशल मीडिया सेक्शन में खाते जोड़ें”,
“it”: “Aggiungi account nella sezione Social media”,
“ja”: “ソーシャルメディアのセクションにアカウントを追加する”,
“ko”: “소셜 미디어 섹션에 계정 추가”,
“nb”: “Legg til kontoer i Sosiale medier-delen”,
“nl”: “Accounts toevoegen in deel Social media”,
“pt-BR”: “Adicionar contas na seção Redes sociais”,
“pt-PT”: “Adicionar contas na secção de Redes sociais”,
“sv”: “Lägg till konton i avsnittet Social media”,
“th”: “เพิ่มบัญชีผู้ใช้ในส่วนโซเชียลมีเดีย”,
“zh-CN”: “在社交媒体部分中添加账户”,
“zh-TW”: “在社群媒體區段新增帳戶”
}
},
{
“type”: “checkbox”,
“id”: “show_payment_icons”,
“label”: {
“da”: “Vis betalingsikoner”,
“de”: “Zahlungssymbole anzeigen”,
“en”: “Show payment icons”,
“es”: “Mostrar iconos de pago”,
“fi”: “Näytä maksukuvakkeet”,
“fr”: “Afficher les icônes de paiement”,
“hi”: “भुगतान आइकन दिखाएं”,
“it”: “Mostra le icone di pagamento”,
“ja”: “支払いアイコンを表示する”,
“ko”: “결제 아이콘 표시”,
“nb”: “Vis betalingsikoner”,
“nl”: “Betalingspictogrammen weergeven”,
“pt-BR”: “Exibir ícones de pagamento”,
“pt-PT”: “Mostrar ícones de pagamento”,
“sv”: “Visa betalningsikoner”,
“th”: “แสดงไอคอนการชำระเงิน”,
“zh-CN”: “显示付款图标”,
“zh-TW”: “顯示付款圖示”
},
“default”: true
},
{
“type”: “link_list”,
“id”: “legal_menu”,
“label”: {
“da”: “Juridisk menu”,
“de”: “Rechtliches Menü”,
“en”: “Legal menu”,
“es”: “Menú legal”,
“fi”: “Oikeustieto-valikko”,
“fr”: “Menu juridique”,
“hi”: “कानूनी मेनू”,
“it”: “Menu legale”,
“ja”: “リーガルメニュー”,
“ko”: “법률 메뉴”,
“nb”: “Juridisk meny”,
“nl”: “Menu Juridisch”,
“pt-BR”: “Menu Aviso legal”,
“pt-PT”: “Menu legal”,
“sv”: “Juridisk meny”,
“th”: “เมนูกฎหมาย”,
“zh-CN”: “法律菜单”,
“zh-TW”: “法律選單”
}
}
],
“max_blocks”: 9,
“blocks”: [
{
“type”: “menu”,
“name”: {
“da”: “Menu”,
“de”: “Menü”,
“en”: “Menu”,
“es”: “Menú”,
“fi”: “Valikko”,
“fr”: “Menu”,
“hi”: “मेनू”,
“it”: “Menu”,
“ja”: “メニュー”,
“ko”: “메뉴”,
“nb”: “Meny”,
“nl”: “Menu”,
“pt-BR”: “Menu”,
“pt-PT”: “Menu”,
“sv”: “Meny”,
“th”: “เมนู”,
“zh-CN”: “菜单”,
“zh-TW”: “選單”
},
“settings”: [
{
“type”: “text”,
“id”: “title”,
“label”: {
“da”: “Overskrift”,
“de”: “Titel”,
“en”: “Heading”,
“es”: “Título”,
“fi”: “Otsake”,
“fr”: “Titre”,
“hi”: “शीर्षक”,
“it”: “Heading”,
“ja”: “見出し”,
“ko”: “제목”,
“nb”: “Overskrift”,
“nl”: “Kop”,
“pt-BR”: “Título”,
“pt-PT”: “Título”,
“sv”: “Rubrik”,
“th”: “ส่วนหัว”,
“zh-CN”: “标题”,
“zh-TW”: “標題”
},
“default”: {
“da”: “Hurtige links”,
“de”: “Quick-Links”,
“en”: “Quick links”,
“es”: “Enlaces rápidos”,
“fi”: “Pikalinkit”,
“fr”: “Liens rapides”,
“hi”: “त्वरित लिंक”,
“it”: “Link rapidi”,
“ja”: “クイックリンク”,
“ko”: “빠른 링크”,
“nb”: “Hurtigkoblinger”,
“nl”: “Snelle links”,
“pt-BR”: “Links rápidos”,
“pt-PT”: “Ligações rápidas”,
“sv”: “Snabblänkar”,
“th”: “ลิงก์ด่วน”,
“zh-CN”: “快速链接”,
“zh-TW”: “快速連結”
}
},
{
“type”: “link_list”,
“id”: “menu”,
“label”: {
“da”: “Menu”,
“de”: “Menü”,
“en”: “Menu”,
“es”: “Menú”,
“fi”: “Valikko”,
“fr”: “Menu”,
“hi”: “मेनू”,
“it”: “Menu”,
“ja”: “メニュー”,
“ko”: “메뉴”,
“nb”: “Meny”,
“nl”: “Menu”,
“pt-BR”: “Menu”,
“pt-PT”: “Menu”,
“sv”: “Meny”,
“th”: “เมนู”,
“zh-CN”: “菜单”,
“zh-TW”: “選單”
}
},
{
“type”: “select”,
“id”: “width”,
“label”: {
“da”: “Containerbredde”,
“de”: “Breite des Elements”,
“en”: “Container width”,
“es”: “Ancho del contenedor”,
“fi”: “Säiliön leveys”,
“fr”: “Largeur du conteneur”,
“hi”: “कंटेनर की चौड़ाई”,
“it”: “Larghezza contenitore”,
“ja”: “コンテナーの幅”,
“ko”: “컨테이너 폭”,
“nb”: “Beholderbredde”,
“nl”: “Containerbreedte”,
“pt-BR”: “Largura do contêiner”,
“pt-PT”: “Largura do recipiente”,
“sv”: “Container-bredd”,
“th”: “ความกว้างของความจุ”,
“zh-CN”: “容器宽度”,
“zh-TW”: “容器寬度”
},
“default”: “16%”,
“options”: [
{
“value”: “16%”,
“label”: {
“da”: “16 %”,
“de”: “16 %”,
“en”: “16%”,
“es”: “16%”,
“fi”: “16%”,
“fr”: “16 %”,
“hi”: “16%”,
“it”: “16%”,
“ja”: “16%”,
“ko”: “16%”,
“nb”: “16 %”,
“nl”: “16%”,
“pt-BR”: “16%”,
“pt-PT”: “16%”,
“sv”: “16%”,
“th”: “16%”,
“zh-CN”: “16%”,
“zh-TW”: “16%”
}
},
{
“value”: “25%”,
“label”: {
“da”: “25 %”,
“de”: “25%”,
“en”: “25%”,
“es”: “25%”,
“fi”: “25 %”,
“fr”: “25 %”,
“hi”: “25%”,
“it”: “25%”,
“ja”: “25%”,
“ko”: “25%”,
“nb”: “25 %”,
“nl”: “25%”,
“pt-BR”: “25%”,
“pt-PT”: “25%”,
“sv”: “25 %”,
“th”: “25%”,
“zh-CN”: “25%”,
“zh-TW”: “25%”
}
},
{
“value”: “33%”,
“label”: {
“da”: “33 %”,
“de”: “33%”,
“en”: “33%”,
“es”: “33%”,
“fi”: “33 %”,
“fr”: “33 %”,
“hi”: “33%”,
“it”: “33%”,
“ja”: “33%”,
“ko”: “33%”,
“nb”: “33 %”,
“nl”: “33%”,
“pt-BR”: “33%”,
“pt-PT”: “33%”,
“sv”: “33 %”,
“th”: “33%”,
“zh-CN”: “33%”,
“zh-TW”: “33%”
}
},
{
“value”: “50%”,
“label”: {
“da”: “50 %”,
“de”: “50%”,
“en”: “50%”,
“es”: “50%”,
“fi”: “50 %”,
“fr”: “50 %”,
“hi”: “50%”,
“it”: “50%”,
“ja”: “50%”,
“ko”: “50%”,
“nb”: “50 %”,
“nl”: “50%”,
“pt-BR”: “50%”,
“pt-PT”: “50%”,
“sv”: “50 %”,
“th”: “50%”,
“zh-CN”: “50%”,
“zh-TW”: “50%”
}
},
{
“value”: “66%”,
“label”: {
“da”: “66 %”,
“de”: “66%”,
“en”: “66%”,
“es”: “66%”,
“fi”: “66 %”,
“fr”: “66 %”,
“hi”: “66%”,
“it”: “66%”,
“ja”: “66%”,
“ko”: “66%”,
“nb”: “66 %”,
“nl”: “66%”,
“pt-BR”: “66%”,
“pt-PT”: “66%”,
“sv”: “66 %”,
“th”: “66%”,
“zh-CN”: “66%”,
“zh-TW”: “66%”
}
},
{
“value”: “75%”,
“label”: {
“da”: “75 %”,
“de”: “75%”,
“en”: “75%”,
“es”: “75%”,
“fi”: “75 %”,
“fr”: “75 %”,
“hi”: “75%”,
“it”: “75%”,
“ja”: “75%”,
“ko”: “75%”,
“nb”: “75 %”,
“nl”: “75%”,
“pt-BR”: “75%”,
“pt-PT”: “75%”,
“sv”: “75 %”,
“th”: “75%”,
“zh-CN”: “75%”,
“zh-TW”: “75%”
}
},
{
“value”: “100%”,
“label”: {
“da”: “100 %”,
“de”: “100%”,
“en”: “100%”,
“es”: “100%”,
“fi”: “100 %”,
“fr”: “100 %”,
“hi”: “100%”,
“it”: “100%”,
“ja”: “100%”,
“ko”: “100%”,
“nb”: “100 %”,
“nl”: “100%”,
“pt-BR”: “100%”,
“pt-PT”: “100%”,
“sv”: “100 %”,
“th”: “100%”,
“zh-CN”: “100%”,
“zh-TW”: “100%”
}
}
]
}
]
},
{
“type”: “text”,
“name”: {
“da”: “RTF”,
“de”: “Rich Text”,
“en”: “Rich text”,
“es”: “Texto enriquecido”,
“fi”: “Rich text”,
“fr”: “Texte enrichi”,
“hi”: “रिच टेक्स्ट”,
“it”: “Rich text”,
“ja”: “リッチテキスト”,
“ko”: “서식있는 텍스트”,
“nb”: “Rich text”,
“nl”: “Tekst met opmaak”,
“pt-BR”: “Rich text”,
“pt-PT”: “Texto formatado”,
“sv”: “Rich text”,
“th”: “Rich Text”,
“zh-CN”: “格式文本”,
“zh-TW”: “RTF 文字”
},
“settings”: [
{
“type”: “text”,
“id”: “title”,
“label”: {
“da”: “Overskrift”,
“de”: “Titel”,
“en”: “Heading”,
“es”: “Título”,
“fi”: “Otsake”,
“fr”: “Titre”,
“hi”: “शीर्षक”,
“it”: “Heading”,
“ja”: “見出し”,
“ko”: “제목”,
“nb”: “Overskrift”,
“nl”: “Kop”,
“pt-BR”: “Título”,
“pt-PT”: “Título”,
“sv”: “Rubrik”,
“th”: “ส่วนหัว”,
“zh-CN”: “标题”,
“zh-TW”: “標題”
},
“default”: {
“da”: “Kontakt os”,
“de”: “Kontakt aufnehmen”,
“en”: “Get in touch”,
“es”: “Ponerse en contacto”,
“fi”: “Ota yhteyttä”,
“fr”: “Entrer en contact”,
“hi”: “संपर्क में रहें”,
“it”: “Contattaci”,
“ja”: “お問い合わせはこちらから”,
“ko”: “연락하기”,
“nb”: “Ta kontakt”,
“nl”: “Neem contact op”,
“pt-BR”: “Entre em contato”,
“pt-PT”: “Contacte”,
“sv”: “Komma i kontakt”,
“th”: “ติดต่อ”,
“zh-CN”: “取得联系”,
“zh-TW”: “請與我們聯絡”
}
},
{
“type”: “richtext”,
“id”: “richtext”,
“label”: {
“da”: “Tekst”,
“de”: “Text”,
“en”: “Text”,
“es”: “Texto”,
“fi”: “Teksti”,
“fr”: “Texte”,
“hi”: “टेक्स्ट”,
“it”: “Testo”,
“ja”: “テキスト”,
“ko”: “텍스트”,
“nb”: “Tekst”,
“nl”: “Tekst”,
“pt-BR”: “Texto”,
“pt-PT”: “Texto”,
“sv”: “Text”,
“th”: “ข้อความ”,
“zh-CN”: “文本”,
“zh-TW”: “文字”
},
“default”: {
“da”: “

Brug denne tekst til at dele oplysninger om dit brand med dine kunder.

”,
“de”: “

Mit diesem Text können Sie Ihre Kunden über Ihre Marke informieren.

”,
“en”: “

Use this text to share information about your brand with your customers.

”,
“es”: “

Usa este texto para compartir información sobre tu marca con tus clientes.

”,
“fi”: “

Tätä tekstiä voidaan käyttää brändiäsi koskevien tietojen jakamiseen asiakkaille.

”,
“fr”: “

Utilisez ce texte pour partager des informations sur votre marque avec vos clients.

”,
“hi”: “

अपने ग्राहकों के साथ अपने ब्रैंड के बारे में जानकारी शेयर करने के लिए इस टेक्स्ट का उपयोग करें.

”,
“it”: “

Utilizza questo spazio per condividere informazioni sul tuo brand con i clienti.

”,
“ja”: “

このテキストを使用して、あなたのブランドに関する情報をお客様と共有します。

”,
“ko”: “

이 텍스트는 고객의 브랜드에 대한 정보를 공유하는데 사용하십시오.

”,
“nb”: “

Bruk denne teksten til å dele informasjon om merkevaren din med kundene dine.

”,
“nl”: “

Gebruik deze tekst om informatie over je merk met je klanten te delen.

”,
“pt-BR”: “

Use este texto para compartilhar informações sobre sua marca com seus clientes.

”,
“pt-PT”: “

Utilize este texto para partilhar informações sobre a sua marca com os seus clientes.

”,
“sv”: “

Använd den här texten för att dela information om ditt varumärke med dina kunder.

”,
“th”: “

ใช้ข้อความนี้เพื่อแชร์ข้อมูลเกี่ยวกับแบรนด์และลูกค้าของคุณ

”,
“zh-CN”: “

使用此文本与您的客户分享有关您的品牌的信息。

”,
“zh-TW”: “

請利用此段文字跟顧客分享您的品牌資訊。


}
},
{
“type”: “select”,
“id”: “width”,
“label”: {
“da”: “Containerbredde”,
“de”: “Breite des Elements”,
“en”: “Container width”,
“es”: “Ancho del contenedor”,
“fi”: “Säiliön leveys”,
“fr”: “Largeur du conteneur”,
“hi”: “कंटेनर की चौड़ाई”,
“it”: “Larghezza contenitore”,
“ja”: “コンテナーの幅”,
“ko”: “컨테이너 폭”,
“nb”: “Beholderbredde”,
“nl”: “Containerbreedte”,
“pt-BR”: “Largura do contêiner”,
“pt-PT”: “Largura do recipiente”,
“sv”: “Container-bredd”,
“th”: “ความกว้างของความจุ”,
“zh-CN”: “容器宽度”,
“zh-TW”: “容器寬度”
},
“default”: “50%”,
“options”: [
{
“value”: “16%”,
“label”: {
“da”: “16 %”,
“de”: “16 %”,
“en”: “16%”,
“es”: “16%”,
“fi”: “16%”,
“fr”: “16 %”,
“hi”: “16%”,
“it”: “16%”,
“ja”: “16%”,
“ko”: “16%”,
“nb”: “16 %”,
“nl”: “16%”,
“pt-BR”: “16%”,
“pt-PT”: “16%”,
“sv”: “16%”,
“th”: “16%”,
“zh-CN”: “16%”,
“zh-TW”: “16%”
}
},
{
“value”: “25%”,
“label”: {
“da”: “25 %”,
“de”: “25%”,
“en”: “25%”,
“es”: “25%”,
“fi”: “25 %”,
“fr”: “25 %”,
“hi”: “25%”,
“it”: “25%”,
“ja”: “25%”,
“ko”: “25%”,
“nb”: “25 %”,
“nl”: “25%”,
“pt-BR”: “25%”,
“pt-PT”: “25%”,
“sv”: “25 %”,
“th”: “25%”,
“zh-CN”: “25%”,
“zh-TW”: “25%”
}
},
{
“value”: “33%”,
“label”: {
“da”: “33 %”,
“de”: “33%”,
“en”: “33%”,
“es”: “33%”,
“fi”: “33 %”,
“fr”: “33 %”,
“hi”: “33%”,
“it”: “33%”,
“ja”: “33%”,
“ko”: “33%”,
“nb”: “33 %”,
“nl”: “33%”,
“pt-BR”: “33%”,
“pt-PT”: “33%”,
“sv”: “33 %”,
“th”: “33%”,
“zh-CN”: “33%”,
“zh-TW”: “33%”
}
},
{
“value”: “50%”,
“label”: {
“da”: “50 %”,
“de”: “50%”,
“en”: “50%”,
“es”: “50%”,
“fi”: “50 %”,
“fr”: “50 %”,
“hi”: “50%”,
“it”: “50%”,
“ja”: “50%”,
“ko”: “50%”,
“nb”: “50 %”,
“nl”: “50%”,
“pt-BR”: “50%”,
“pt-PT”: “50%”,
“sv”: “50 %”,
“th”: “50%”,
“zh-CN”: “50%”,
“zh-TW”: “50%”
}
},
{
“value”: “66%”,
“label”: {
“da”: “66 %”,
“de”: “66%”,
“en”: “66%”,
“es”: “66%”,
“fi”: “66 %”,
“fr”: “66 %”,
“hi”: “66%”,
“it”: “66%”,
“ja”: “66%”,
“ko”: “66%”,
“nb”: “66 %”,
“nl”: “66%”,
“pt-BR”: “66%”,
“pt-PT”: “66%”,
“sv”: “66 %”,
“th”: “66%”,
“zh-CN”: “66%”,
“zh-TW”: “66%”
}
},
{
“value”: “75%”,
“label”: {
“da”: “75 %”,
“de”: “75%”,
“en”: “75%”,
“es”: “75%”,
“fi”: “75 %”,
“fr”: “75 %”,
“hi”: “75%”,
“it”: “75%”,
“ja”: “75%”,
“ko”: “75%”,
“nb”: “75 %”,
“nl”: “75%”,
“pt-BR”: “75%”,
“pt-PT”: “75%”,
“sv”: “75 %”,
“th”: “75%”,
“zh-CN”: “75%”,
“zh-TW”: “75%”
}
},
{
“value”: “100%”,
“label”: {
“da”: “100 %”,
“de”: “100%”,
“en”: “100%”,
“es”: “100%”,
“fi”: “100 %”,
“fr”: “100 %”,
“hi”: “100%”,
“it”: “100%”,
“ja”: “100%”,
“ko”: “100%”,
“nb”: “100 %”,
“nl”: “100%”,
“pt-BR”: “100%”,
“pt-PT”: “100%”,
“sv”: “100 %”,
“th”: “100%”,
“zh-CN”: “100%”,
“zh-TW”: “100%”
}
}
]
}
]
},
{
“type”: “newsletter”,
“name”: {
“da”: “Tilmelding til nyhedsbrev”,
“de”: “Newsletter-Anmeldung”,
“en”: “Newsletter signup”,
“es”: “Suscripción al boletín”,
“fi”: “Uutiskirjeen tilaus”,
“fr”: “Inscription”,
“hi”: “न्यूज़लेटर साइनअप”,
“it”: “Iscrizione newsletter”,
“ja”: “ニュースレターの登録”,
“ko”: “뉴스레터 신청”,
“nb”: “Registrering for nyhetsbrev”,
“nl”: “Nieuwsbriefaanmelding”,
“pt-BR”: “Assinatura da newsletter”,
“pt-PT”: “Registo na newsletter”,
“sv”: “Nyhetsbrevsregistrering”,
“th”: “การสมัครรับจดหมายข่าว”,
“zh-CN”: “新闻通讯注册”,
“zh-TW”: “訂閱電子報”
},
“limit”: 1,
“settings”: [
{
“type”: “text”,
“id”: “title”,
“label”: {
“da”: “Overskrift”,
“de”: “Titel”,
“en”: “Heading”,
“es”: “Título”,
“fi”: “Otsake”,
“fr”: “Titre”,
“hi”: “शीर्षक”,
“it”: “Heading”,
“ja”: “見出し”,
“ko”: “제목”,
“nb”: “Overskrift”,
“nl”: “Kop”,
“pt-BR”: “Título”,
“pt-PT”: “Título”,
“sv”: “Rubrik”,
“th”: “ส่วนหัว”,
“zh-CN”: “标题”,
“zh-TW”: “標題”
},
“default”: {
“da”: “Nyhedsbrev”,
“de”: “Newsletter”,
“en”: “Newsletter”,
“es”: “Boletín”,
“fi”: “Uutiskirje”,
“fr”: “Newsletter”,
“hi”: “न्यूज़लेटर”,
“it”: “Newsletter”,
“ja”: “ニュースレター”,
“ko”: “뉴스레터”,
“nb”: “Nyhetsbrev”,
“nl”: “Nieuwsbrief”,
“pt-BR”: “Newsletter”,
“pt-PT”: “Newsletter”,
“sv”: “Nyhetsbrev”,
“th”: “จดหมายข่าว”,
“zh-CN”: “新闻通讯”,
“zh-TW”: “電子報”
}
},
{
“type”: “richtext”,
“id”: “subtext”,
“label”: {
“da”: “Undertekst”,
“de”: “Subtext”,
“en”: “Subtext”,
“es”: “Subtexto”,
“fi”: “Alateksti”,
“fr”: “Sous-texte”,
“hi”: “सबटेक्स्ट”,
“it”: “Sottotesto”,
“ja”: “サブテキスト”,
“ko”: “하위 텍스트”,
“nb”: “Undertekst”,
“nl”: “Subtekst”,
“pt-BR”: “Subtexto”,
“pt-PT”: “Subtexto”,
“sv”: “Undertext”,
“th”: “ข้อความรอง”,
“zh-CN”: “子文本”,
“zh-TW”: “子文字”
},
“default”: {
“da”: “

Reklamer, nye produkter og salg. Direkte i din indbakke.

”,
“de”: “

Werbeaktionen, neue Produkte und Sonderangebote. Direkt in Ihrem Posteingang.

”,
“en”: “

Promotions, new products and sales. Directly to your inbox.

”,
“es”: “

Promociones, nuevos productos y ventas. Directamente a tu bandeja de entrada.

”,
“fi”: “

Kampanjat, uudet tuotteet ja myynti. Suoraan saapuneet-kansioosi

”,
“fr”: “

Promotions, nouveaux produits et soldes. Directement dans votre boîte de réception.

”,
“hi”: “

प्रमोशन, नए उत्पाद और सेल. सीधे आपके इनबॉक्स में.

”,
“it”: “

Promozioni, nuovi prodotti e offerte. Direttamente nella tua casella di posta.

”,
“ja”: “

新商品やセール情報などのお得な情報をお届けします。

”,
“ko”: “

프로모션, 신제품, 판매. 받은 편지함으로 바로 이동.

”,
“nb”: “

Kampanjer, nye produkter og salg. Direkte i innboksen din.

”,
“nl”: “

Promoties, nieuwe producten en uitverkoop rechtstreeks in je inbox.

”,
“pt-BR”: “

Promoções, novos produtos e ofertas, diretamente em sua caixa de entrada.

”,
“pt-PT”: “

Promoções, novos produtos e ofertas. Diretamente na sua caixa de entrada.

”,
“sv”: “

Kampanjer, nya produkter och försäljning. Direkt till din inkorg.

”,
“th”: “

โปรโมชัน สินค้าใหม่ และการลดราคา ตรงสู่กล่องจดหมายเข้าของคุณ

”,
“zh-CN”: “

促销、新产品和销售。直接发送到您的收件箱。

”,
“zh-TW”: “

讓您直接在收件匣內收取促銷活動、最新產品和特賣活動訊息。


}
},
{
“type”: “paragraph”,
“content”: {
“da”: “Alle kunder, der tilmelder sig, får oprettet en konto i Shopify. Se kunder”,
“de”: “Alle Kunden, die sich eintragen, bekommen ein Konto in Shopify. Kunden ansehen”,
“en”: “Any customers who sign up will have an account created for them in Shopify. View customers”,
“es”: “Todos los clientes que se registren tendrán una cuenta creada para ellos en Shopify. Ver clientes”,
“fi”: “Tilaaville asiakkaille luodaan tili Shopify-palvelussa. Näytä asiakkaat”,
“fr”: “Tous les clients qui s’inscrivent auront un compte créé pour eux sur Shopify. Voir les clients”,
“hi”: “साइन अप करने वाले कोई भी ग्राहक, के पास Shopify में खाता बनाया जाएगा. ग्राहक देखें”,
“it”: “Qualsiasi cliente che si iscrive avrà un account creato appositamente su Shopify. Visualizza clienti”,
“ja”: “サインアップしたお客様は、Shopifyでアカウントが作成されます。お客様を表示”,
“ko”: “가입한 고객은 Shopify에서 생성된 계정을 보유하게 됩니다. [고객보기](/admin/customers? query=& accepts_marketing=1)”,
“nb”: “Alle kunder som melder seg på, vil få opprettet en konto i Shopify. Se kunder”,
“nl”: “Voor alle klanten die zich aanmelden, wordt een Shopify-account gemaakt. Klanten weergeven”,
“pt-BR”: “Todos os clientes que se inscreverem terão uma conta criada para eles na Shopify. Visualizar clientes”,
“pt-PT”: “Será criada uma conta na Shopify para todos os clientes que se registarem. Ver clientes”,
“sv”: “Alla kunder som registrerar sig kommer att få ett konto skapat i Shopify. [Visa kunder](/ admin / kunder? Query = & accepts_marketing = 1)”,
“th”: “ระบบจะสร้างบัญชีผู้ใช้ใน Shopify ให้แก่ลูกค้ารายใดก็ตามที่ลงทะเบียน ดูลูกค้า”,
“zh-CN”: “任何注册用户都将在 Shopify 中拥有一个为他们创建的账户。查看客户”,
“zh-TW”: “顧客註冊後就可以擁有 Shopify 的帳戶。檢視顧客
}
},
{
“type”: “select”,
“id”: “width”,
“label”: {
“da”: “Containerbredde”,
“de”: “Breite des Elements”,
“en”: “Container width”,
“es”: “Ancho del contenedor”,
“fi”: “Säiliön leveys”,
“fr”: “Largeur du conteneur”,
“hi”: “कंटेनर की चौड़ाई”,
“it”: “Larghezza contenitore”,
“ja”: “コンテナーの幅”,
“ko”: “컨테이너 폭”,
“nb”: “Beholderbredde”,
“nl”: “Containerbreedte”,
“pt-BR”: “Largura do contêiner”,
“pt-PT”: “Largura do recipiente”,
“sv”: “Container-bredd”,
“th”: “ความกว้างของความจุ”,
“zh-CN”: “容器宽度”,
“zh-TW”: “容器寬度”
},
“default”: “33%”,
“options”: [
{
“value”: “25%”,
“label”: {
“da”: “25 %”,
“de”: “25%”,
“en”: “25%”,
“es”: “25%”,
“fi”: “25 %”,
“fr”: “25 %”,
“hi”: “25%”,
“it”: “25%”,
“ja”: “25%”,
“ko”: “25%”,
“nb”: “25 %”,
“nl”: “25%”,
“pt-BR”: “25%”,
“pt-PT”: “25%”,
“sv”: “25 %”,
“th”: “25%”,
“zh-CN”: “25%”,
“zh-TW”: “25%”
}
},
{
“value”: “33%”,
“label”: {
“da”: “33 %”,
“de”: “33%”,
“en”: “33%”,
“es”: “33%”,
“fi”: “33 %”,
“fr”: “33 %”,
“hi”: “33%”,
“it”: “33%”,
“ja”: “33%”,
“ko”: “33%”,
“nb”: “33 %”,
“nl”: “33%”,
“pt-BR”: “33%”,
“pt-PT”: “33%”,
“sv”: “33 %”,
“th”: “33%”,
“zh-CN”: “33%”,
“zh-TW”: “33%”
}
},
{
“value”: “50%”,
“label”: {
“da”: “50 %”,
“de”: “50%”,
“en”: “50%”,
“es”: “50%”,
“fi”: “50 %”,
“fr”: “50 %”,
“hi”: “50%”,
“it”: “50%”,
“ja”: “50%”,
“ko”: “50%”,
“nb”: “50 %”,
“nl”: “50%”,
“pt-BR”: “50%”,
“pt-PT”: “50%”,
“sv”: “50 %”,
“th”: “50%”,
“zh-CN”: “50%”,
“zh-TW”: “50%”
}
},
{
“value”: “66%”,
“label”: {
“da”: “66 %”,
“de”: “66%”,
“en”: “66%”,
“es”: “66%”,
“fi”: “66 %”,
“fr”: “66 %”,
“hi”: “66%”,
“it”: “66%”,
“ja”: “66%”,
“ko”: “66%”,
“nb”: “66 %”,
“nl”: “66%”,
“pt-BR”: “66%”,
“pt-PT”: “66%”,
“sv”: “66 %”,
“th”: “66%”,
“zh-CN”: “66%”,
“zh-TW”: “66%”
}
},
{
“value”: “75%”,
“label”: {
“da”: “75 %”,
“de”: “75%”,
“en”: “75%”,
“es”: “75%”,
“fi”: “75 %”,
“fr”: “75 %”,
“hi”: “75%”,
“it”: “75%”,
“ja”: “75%”,
“ko”: “75%”,
“nb”: “75 %”,
“nl”: “75%”,
“pt-BR”: “75%”,
“pt-PT”: “75%”,
“sv”: “75 %”,
“th”: “75%”,
“zh-CN”: “75%”,
“zh-TW”: “75%”
}
},
{
“value”: “100%”,
“label”: {
“da”: “100 %”,
“de”: “100%”,
“en”: “100%”,
“es”: “100%”,
“fi”: “100 %”,
“fr”: “100 %”,
“hi”: “100%”,
“it”: “100%”,
“ja”: “100%”,
“ko”: “100%”,
“nb”: “100 %”,
“nl”: “100%”,
“pt-BR”: “100%”,
“pt-PT”: “100%”,
“sv”: “100 %”,
“th”: “100%”,
“zh-CN”: “100%”,
“zh-TW”: “100%”
}
}
]
}
]
}
]
}
{% endschema %}

For unknown reasons my reply code is being deleted.

I have uploaded the code to an online text editor:

https://textdoc.co/2tnMyCfrZ5T9NLpV

Please let me know if this works this time.

Thank you!

1 Like

@RazKen

thanks for code can you please update

{% capture theme_settings_link %}{{ 'layout.footer.theme_settings' | t }}{% endcapture %}

 
{% schema %}
{
"name": {
"da": "Sidefod",
"de": "Fußzeile",
"en": "Footer",
"es": "Pie de página",
"fi": "Alatunniste",
"fr": "Pied de page",
"hi": "फुटर",
"it": "Footer",
"ja": "フッター",
"ko": "바닥글",
"nb": "Footer",
"nl": "Voettekst",
"pt-BR": "Rodapé",
"pt-PT": "Rodapé",
"sv": "Sidfot",
"th": "ส่วนท้าย",
"zh-CN": "页脚",
"zh-TW": "頁尾"
},
"class": "footer-section",
"settings": [
{
"type": "checkbox",
"id": "social_enabled",
"label": {
"da": "Vis ikoner for sociale medier",
"de": "Social-Media-Symbole anzeigen",
"en": "Show social media icons",
"es": "Mostrar iconos de redes sociales",
"fi": "Näytä some-kuvakkeet",
"fr": "Afficher les icônes des médias sociaux",
"hi": "सोशल मीडिया आइकन दिखाएं",
"it": "Mostra icone social media",
"ja": "ソーシャルメディアのアイコンを表示する",
"ko": "소셜 미디어 아이콘 표시",
"nb": "Vis ikoner for sosiale medier",
"nl": "Pictogrammen social media weergeven",
"pt-BR": "Exibir ícones de redes sociais",
"pt-PT": "Mostrar ícones de redes sociais",
"sv": "sociala medier-ikoner",
"th": "แสดงไอคอนโซเชียลมีเดีย",
"zh-CN": "显示社交媒体图标",
"zh-TW": "顯示社群媒體圖示"
},
"info": {
"da": "Tilføj konti i afsnittet Sociale medier",
"de": "Konten im Social-Media-Abschnitt hinzufügen",
"en": "Add accounts in Social media section",
"es": "Agregar cuentas en la sección de redes sociales",
"fi": "Lisää tilejä sosiaalisen median osiossa",
"fr": "Ajouter les comptes dans la section Médias sociaux",
"hi": "सोशल मीडिया सेक्शन में खाते जोड़ें",
"it": "Aggiungi account nella sezione Social media",
"ja": "ソーシャルメディアのセクションにアカウントを追加する",
"ko": "소셜 미디어 섹션에 계정 추가",
"nb": "Legg til kontoer i Sosiale medier-delen",
"nl": "Accounts toevoegen in deel Social media",
"pt-BR": "Adicionar contas na seção Redes sociais",
"pt-PT": "Adicionar contas na secção de Redes sociais",
"sv": "Lägg till konton i avsnittet Social media",
"th": "เพิ่มบัญชีผู้ใช้ในส่วนโซเชียลมีเดีย",
"zh-CN": "在社交媒体部分中添加账户",
"zh-TW": "在社群媒體區段新增帳戶"
}
},
{
"type": "checkbox",
"id": "show_payment_icons",
"label": {
"da": "Vis betalingsikoner",
"de": "Zahlungssymbole anzeigen",
"en": "Show payment icons",
"es": "Mostrar iconos de pago",
"fi": "Näytä maksukuvakkeet",
"fr": "Afficher les icônes de paiement",
"hi": "भुगतान आइकन दिखाएं",
"it": "Mostra le icone di pagamento",
"ja": "支払いアイコンを表示する",
"ko": "결제 아이콘 표시",
"nb": "Vis betalingsikoner",
"nl": "Betalingspictogrammen weergeven",
"pt-BR": "Exibir ícones de pagamento",
"pt-PT": "Mostrar ícones de pagamento",
"sv": "Visa betalningsikoner",
"th": "แสดงไอคอนการชำระเงิน",
"zh-CN": "显示付款图标",
"zh-TW": "顯示付款圖示"
},
"default": true
},
{
"type": "link_list",
"id": "legal_menu",
"label": {
"da": "Juridisk menu",
"de": "Rechtliches Menü",
"en": "Legal menu",
"es": "Menú legal",
"fi": "Oikeustieto-valikko",
"fr": "Menu juridique",
"hi": "कानूनी मेनू",
"it": "Menu legale",
"ja": "リーガルメニュー",
"ko": "법률 메뉴",
"nb": "Juridisk meny",
"nl": "Menu Juridisch",
"pt-BR": "Menu Aviso legal",
"pt-PT": "Menu legal",
"sv": "Juridisk meny",
"th": "เมนูกฎหมาย",
"zh-CN": "法律菜单",
"zh-TW": "法律選單"
}
}
],
"max_blocks": 9,
"blocks": [
{
"type": "menu",
"name": {
"da": "Menu",
"de": "Menü",
"en": "Menu",
"es": "Menú",
"fi": "Valikko",
"fr": "Menu",
"hi": "मेनू",
"it": "Menu",
"ja": "メニュー",
"ko": "메뉴",
"nb": "Meny",
"nl": "Menu",
"pt-BR": "Menu",
"pt-PT": "Menu",
"sv": "Meny",
"th": "เมนู",
"zh-CN": "菜单",
"zh-TW": "選單"
},
"settings": [
{
"type": "text",
"id": "title",
"label": {
"da": "Overskrift",
"de": "Titel",
"en": "Heading",
"es": "Título",
"fi": "Otsake",
"fr": "Titre",
"hi": "शीर्षक",
"it": "Heading",
"ja": "見出し",
"ko": "제목",
"nb": "Overskrift",
"nl": "Kop",
"pt-BR": "Título",
"pt-PT": "Título",
"sv": "Rubrik",
"th": "ส่วนหัว",
"zh-CN": "标题",
"zh-TW": "標題"
},
"default": {
"da": "Hurtige links",
"de": "Quick-Links",
"en": "Quick links",
"es": "Enlaces rápidos",
"fi": "Pikalinkit",
"fr": "Liens rapides",
"hi": "त्वरित लिंक",
"it": "Link rapidi",
"ja": "クイックリンク",
"ko": "빠른 링크",
"nb": "Hurtigkoblinger",
"nl": "Snelle links",
"pt-BR": "Links rápidos",
"pt-PT": "Ligações rápidas",
"sv": "Snabblänkar",
"th": "ลิงก์ด่วน",
"zh-CN": "快速链接",
"zh-TW": "快速連結"
}
},
{
"type": "link_list",
"id": "menu",
"label": {
"da": "Menu",
"de": "Menü",
"en": "Menu",
"es": "Menú",
"fi": "Valikko",
"fr": "Menu",
"hi": "मेनू",
"it": "Menu",
"ja": "メニュー",
"ko": "메뉴",
"nb": "Meny",
"nl": "Menu",
"pt-BR": "Menu",
"pt-PT": "Menu",
"sv": "Meny",
"th": "เมนู",
"zh-CN": "菜单",
"zh-TW": "選單"
}
},
{
"type": "select",
"id": "width",
"label": {
"da": "Containerbredde",
"de": "Breite des Elements",
"en": "Container width",
"es": "Ancho del contenedor",
"fi": "Säiliön leveys",
"fr": "Largeur du conteneur",
"hi": "कंटेनर की चौड़ाई",
"it": "Larghezza contenitore",
"ja": "コンテナーの幅",
"ko": "컨테이너 폭",
"nb": "Beholderbredde",
"nl": "Containerbreedte",
"pt-BR": "Largura do contêiner",
"pt-PT": "Largura do recipiente",
"sv": "Container-bredd",
"th": "ความกว้างของความจุ",
"zh-CN": "容器宽度",
"zh-TW": "容器寬度"
},
"default": "16%",
"options": [
{
"value": "16%",
"label": {
"da": "16 %",
"de": "16 %",
"en": "16%",
"es": "16%",
"fi": "16%",
"fr": "16 %",
"hi": "16%",
"it": "16%",
"ja": "16%",
"ko": "16%",
"nb": "16 %",
"nl": "16%",
"pt-BR": "16%",
"pt-PT": "16%",
"sv": "16%",
"th": "16%",
"zh-CN": "16%",
"zh-TW": "16%"
}
},
{
"value": "25%",
"label": {
"da": "25 %",
"de": "25%",
"en": "25%",
"es": "25%",
"fi": "25 %",
"fr": "25 %",
"hi": "25%",
"it": "25%",
"ja": "25%",
"ko": "25%",
"nb": "25 %",
"nl": "25%",
"pt-BR": "25%",
"pt-PT": "25%",
"sv": "25 %",
"th": "25%",
"zh-CN": "25%",
"zh-TW": "25%"
}
},
{
"value": "33%",
"label": {
"da": "33 %",
"de": "33%",
"en": "33%",
"es": "33%",
"fi": "33 %",
"fr": "33 %",
"hi": "33%",
"it": "33%",
"ja": "33%",
"ko": "33%",
"nb": "33 %",
"nl": "33%",
"pt-BR": "33%",
"pt-PT": "33%",
"sv": "33 %",
"th": "33%",
"zh-CN": "33%",
"zh-TW": "33%"
}
},
{
"value": "50%",
"label": {
"da": "50 %",
"de": "50%",
"en": "50%",
"es": "50%",
"fi": "50 %",
"fr": "50 %",
"hi": "50%",
"it": "50%",
"ja": "50%",
"ko": "50%",
"nb": "50 %",
"nl": "50%",
"pt-BR": "50%",
"pt-PT": "50%",
"sv": "50 %",
"th": "50%",
"zh-CN": "50%",
"zh-TW": "50%"
}
},
{
"value": "66%",
"label": {
"da": "66 %",
"de": "66%",
"en": "66%",
"es": "66%",
"fi": "66 %",
"fr": "66 %",
"hi": "66%",
"it": "66%",
"ja": "66%",
"ko": "66%",
"nb": "66 %",
"nl": "66%",
"pt-BR": "66%",
"pt-PT": "66%",
"sv": "66 %",
"th": "66%",
"zh-CN": "66%",
"zh-TW": "66%"
}
},
{
"value": "75%",
"label": {
"da": "75 %",
"de": "75%",
"en": "75%",
"es": "75%",
"fi": "75 %",
"fr": "75 %",
"hi": "75%",
"it": "75%",
"ja": "75%",
"ko": "75%",
"nb": "75 %",
"nl": "75%",
"pt-BR": "75%",
"pt-PT": "75%",
"sv": "75 %",
"th": "75%",
"zh-CN": "75%",
"zh-TW": "75%"
}
},
{
"value": "100%",
"label": {
"da": "100 %",
"de": "100%",
"en": "100%",
"es": "100%",
"fi": "100 %",
"fr": "100 %",
"hi": "100%",
"it": "100%",
"ja": "100%",
"ko": "100%",
"nb": "100 %",
"nl": "100%",
"pt-BR": "100%",
"pt-PT": "100%",
"sv": "100 %",
"th": "100%",
"zh-CN": "100%",
"zh-TW": "100%"
}
}
]
}
]
},
{
"type": "text",
"name": {
"da": "RTF",
"de": "Rich Text",
"en": "Rich text",
"es": "Texto enriquecido",
"fi": "Rich text",
"fr": "Texte enrichi",
"hi": "रिच टेक्स्ट",
"it": "Rich text",
"ja": "リッチテキスト",
"ko": "서식있는 텍스트",
"nb": "Rich text",
"nl": "Tekst met opmaak",
"pt-BR": "Rich text",
"pt-PT": "Texto formatado",
"sv": "Rich text",
"th": "Rich Text",
"zh-CN": "格式文本",
"zh-TW": "RTF 文字"
},
"settings": [
{
"type": "text",
"id": "title",
"label": {
"da": "Overskrift",
"de": "Titel",
"en": "Heading",
"es": "Título",
"fi": "Otsake",
"fr": "Titre",
"hi": "शीर्षक",
"it": "Heading",
"ja": "見出し",
"ko": "제목",
"nb": "Overskrift",
"nl": "Kop",
"pt-BR": "Título",
"pt-PT": "Título",
"sv": "Rubrik",
"th": "ส่วนหัว",
"zh-CN": "标题",
"zh-TW": "標題"
},
"default": {
"da": "Kontakt os",
"de": "Kontakt aufnehmen",
"en": "Get in touch",
"es": "Ponerse en contacto",
"fi": "Ota yhteyttä",
"fr": "Entrer en contact",
"hi": "संपर्क में रहें",
"it": "Contattaci",
"ja": "お問い合わせはこちらから",
"ko": "연락하기",
"nb": "Ta kontakt",
"nl": "Neem contact op",
"pt-BR": "Entre em contato",
"pt-PT": "Contacte",
"sv": "Komma i kontakt",
"th": "ติดต่อ",
"zh-CN": "取得联系",
"zh-TW": "請與我們聯絡"
}
},
{
"type": "richtext",
"id": "richtext",
"label": {
"da": "Tekst",
"de": "Text",
"en": "Text",
"es": "Texto",
"fi": "Teksti",
"fr": "Texte",
"hi": "टेक्स्ट",
"it": "Testo",
"ja": "テキスト",
"ko": "텍스트",
"nb": "Tekst",
"nl": "Tekst",
"pt-BR": "Texto",
"pt-PT": "Texto",
"sv": "Text",
"th": "ข้อความ",
"zh-CN": "文本",
"zh-TW": "文字"
},
"default": {
"da": "

Brug denne tekst til at dele oplysninger om dit brand med dine kunder.

",
"de": "

Mit diesem Text können Sie Ihre Kunden über Ihre Marke informieren.

",
"en": "

Use this text to share information about your brand with your customers.

",
"es": "

Usa este texto para compartir información sobre tu marca con tus clientes.

",
"fi": "

Tätä tekstiä voidaan käyttää brändiäsi koskevien tietojen jakamiseen asiakkaille.

",
"fr": "

Utilisez ce texte pour partager des informations sur votre marque avec vos clients.

",
"hi": "

अपने ग्राहकों के साथ अपने ब्रैंड के बारे में जानकारी शेयर करने के लिए इस टेक्स्ट का उपयोग करें.

",
"it": "

Utilizza questo spazio per condividere informazioni sul tuo brand con i clienti.

",
"ja": "

このテキストを使用して、あなたのブランドに関する情報をお客様と共有します。

",
"ko": "

이 텍스트는 고객의 브랜드에 대한 정보를 공유하는데 사용하십시오.

",
"nb": "

Bruk denne teksten til å dele informasjon om merkevaren din med kundene dine.

",
"nl": "

Gebruik deze tekst om informatie over je merk met je klanten te delen.

",
"pt-BR": "

Use este texto para compartilhar informações sobre sua marca com seus clientes.

",
"pt-PT": "

Utilize este texto para partilhar informações sobre a sua marca com os seus clientes.

",
"sv": "

Använd den här texten för att dela information om ditt varumärke med dina kunder.

",
"th": "

ใช้ข้อความนี้เพื่อแชร์ข้อมูลเกี่ยวกับแบรนด์และลูกค้าของคุณ

",
"zh-CN": "

使用此文本与您的客户分享有关您的品牌的信息。

",
"zh-TW": "

請利用此段文字跟顧客分享您的品牌資訊。

"
}
},
{
"type": "select",
"id": "width",
"label": {
"da": "Containerbredde",
"de": "Breite des Elements",
"en": "Container width",
"es": "Ancho del contenedor",
"fi": "Säiliön leveys",
"fr": "Largeur du conteneur",
"hi": "कंटेनर की चौड़ाई",
"it": "Larghezza contenitore",
"ja": "コンテナーの幅",
"ko": "컨테이너 폭",
"nb": "Beholderbredde",
"nl": "Containerbreedte",
"pt-BR": "Largura do contêiner",
"pt-PT": "Largura do recipiente",
"sv": "Container-bredd",
"th": "ความกว้างของความจุ",
"zh-CN": "容器宽度",
"zh-TW": "容器寬度"
},
"default": "50%",
"options": [
{
"value": "16%",
"label": {
"da": "16 %",
"de": "16 %",
"en": "16%",
"es": "16%",
"fi": "16%",
"fr": "16 %",
"hi": "16%",
"it": "16%",
"ja": "16%",
"ko": "16%",
"nb": "16 %",
"nl": "16%",
"pt-BR": "16%",
"pt-PT": "16%",
"sv": "16%",
"th": "16%",
"zh-CN": "16%",
"zh-TW": "16%"
}
},
{
"value": "25%",
"label": {
"da": "25 %",
"de": "25%",
"en": "25%",
"es": "25%",
"fi": "25 %",
"fr": "25 %",
"hi": "25%",
"it": "25%",
"ja": "25%",
"ko": "25%",
"nb": "25 %",
"nl": "25%",
"pt-BR": "25%",
"pt-PT": "25%",
"sv": "25 %",
"th": "25%",
"zh-CN": "25%",
"zh-TW": "25%"
}
},
{
"value": "33%",
"label": {
"da": "33 %",
"de": "33%",
"en": "33%",
"es": "33%",
"fi": "33 %",
"fr": "33 %",
"hi": "33%",
"it": "33%",
"ja": "33%",
"ko": "33%",
"nb": "33 %",
"nl": "33%",
"pt-BR": "33%",
"pt-PT": "33%",
"sv": "33 %",
"th": "33%",
"zh-CN": "33%",
"zh-TW": "33%"
}
},
{
"value": "50%",
"label": {
"da": "50 %",
"de": "50%",
"en": "50%",
"es": "50%",
"fi": "50 %",
"fr": "50 %",
"hi": "50%",
"it": "50%",
"ja": "50%",
"ko": "50%",
"nb": "50 %",
"nl": "50%",
"pt-BR": "50%",
"pt-PT": "50%",
"sv": "50 %",
"th": "50%",
"zh-CN": "50%",
"zh-TW": "50%"
}
},
{
"value": "66%",
"label": {
"da": "66 %",
"de": "66%",
"en": "66%",
"es": "66%",
"fi": "66 %",
"fr": "66 %",
"hi": "66%",
"it": "66%",
"ja": "66%",
"ko": "66%",
"nb": "66 %",
"nl": "66%",
"pt-BR": "66%",
"pt-PT": "66%",
"sv": "66 %",
"th": "66%",
"zh-CN": "66%",
"zh-TW": "66%"
}
},
{
"value": "75%",
"label": {
"da": "75 %",
"de": "75%",
"en": "75%",
"es": "75%",
"fi": "75 %",
"fr": "75 %",
"hi": "75%",
"it": "75%",
"ja": "75%",
"ko": "75%",
"nb": "75 %",
"nl": "75%",
"pt-BR": "75%",
"pt-PT": "75%",
"sv": "75 %",
"th": "75%",
"zh-CN": "75%",
"zh-TW": "75%"
}
},
{
"value": "100%",
"label": {
"da": "100 %",
"de": "100%",
"en": "100%",
"es": "100%",
"fi": "100 %",
"fr": "100 %",
"hi": "100%",
"it": "100%",
"ja": "100%",
"ko": "100%",
"nb": "100 %",
"nl": "100%",
"pt-BR": "100%",
"pt-PT": "100%",
"sv": "100 %",
"th": "100%",
"zh-CN": "100%",
"zh-TW": "100%"
}
}
]
}
]
},
{
"type": "newsletter",
"name": {
"da": "Tilmelding til nyhedsbrev",
"de": "Newsletter-Anmeldung",
"en": "Newsletter signup",
"es": "Suscripción al boletín",
"fi": "Uutiskirjeen tilaus",
"fr": "Inscription",
"hi": "न्यूज़लेटर साइनअप",
"it": "Iscrizione newsletter",
"ja": "ニュースレターの登録",
"ko": "뉴스레터 신청",
"nb": "Registrering for nyhetsbrev",
"nl": "Nieuwsbriefaanmelding",
"pt-BR": "Assinatura da newsletter",
"pt-PT": "Registo na newsletter",
"sv": "Nyhetsbrevsregistrering",
"th": "การสมัครรับจดหมายข่าว",
"zh-CN": "新闻通讯注册",
"zh-TW": "訂閱電子報"
},
"limit": 1,
"settings": [
{
"type": "text",
"id": "title",
"label": {
"da": "Overskrift",
"de": "Titel",
"en": "Heading",
"es": "Título",
"fi": "Otsake",
"fr": "Titre",
"hi": "शीर्षक",
"it": "Heading",
"ja": "見出し",
"ko": "제목",
"nb": "Overskrift",
"nl": "Kop",
"pt-BR": "Título",
"pt-PT": "Título",
"sv": "Rubrik",
"th": "ส่วนหัว",
"zh-CN": "标题",
"zh-TW": "標題"
},
"default": {
"da": "Nyhedsbrev",
"de": "Newsletter",
"en": "Newsletter",
"es": "Boletín",
"fi": "Uutiskirje",
"fr": "Newsletter",
"hi": "न्यूज़लेटर",
"it": "Newsletter",
"ja": "ニュースレター",
"ko": "뉴스레터",
"nb": "Nyhetsbrev",
"nl": "Nieuwsbrief",
"pt-BR": "Newsletter",
"pt-PT": "Newsletter",
"sv": "Nyhetsbrev",
"th": "จดหมายข่าว",
"zh-CN": "新闻通讯",
"zh-TW": "電子報"
}
},
{
"type": "richtext",
"id": "subtext",
"label": {
"da": "Undertekst",
"de": "Subtext",
"en": "Subtext",
"es": "Subtexto",
"fi": "Alateksti",
"fr": "Sous-texte",
"hi": "सबटेक्स्ट",
"it": "Sottotesto",
"ja": "サブテキスト",
"ko": "하위 텍스트",
"nb": "Undertekst",
"nl": "Subtekst",
"pt-BR": "Subtexto",
"pt-PT": "Subtexto",
"sv": "Undertext",
"th": "ข้อความรอง",
"zh-CN": "子文本",
"zh-TW": "子文字"
},
"default": {
"da": "

Reklamer, nye produkter og salg. Direkte i din indbakke.

",
"de": "

Werbeaktionen, neue Produkte und Sonderangebote. Direkt in Ihrem Posteingang.

",
"en": "

Promotions, new products and sales. Directly to your inbox.

",
"es": "

Promociones, nuevos productos y ventas. Directamente a tu bandeja de entrada.

",
"fi": "

Kampanjat, uudet tuotteet ja myynti. Suoraan saapuneet-kansioosi

",
"fr": "

Promotions, nouveaux produits et soldes. Directement dans votre boîte de réception.

",
"hi": "

प्रमोशन, नए उत्पाद और सेल. सीधे आपके इनबॉक्स में.

",
"it": "

Promozioni, nuovi prodotti e offerte. Direttamente nella tua casella di posta.

",
"ja": "

新商品やセール情報などのお得な情報をお届けします。

",
"ko": "

프로모션, 신제품, 판매. 받은 편지함으로 바로 이동.

",
"nb": "

Kampanjer, nye produkter og salg. Direkte i innboksen din.

",
"nl": "

Promoties, nieuwe producten en uitverkoop rechtstreeks in je inbox.

",
"pt-BR": "

Promoções, novos produtos e ofertas, diretamente em sua caixa de entrada.

",
"pt-PT": "

Promoções, novos produtos e ofertas. Diretamente na sua caixa de entrada.

",
"sv": "

Kampanjer, nya produkter och försäljning. Direkt till din inkorg.

",
"th": "

โปรโมชัน สินค้าใหม่ และการลดราคา ตรงสู่กล่องจดหมายเข้าของคุณ

",
"zh-CN": "

促销、新产品和销售。直接发送到您的收件箱。

",
"zh-TW": "

讓您直接在收件匣內收取促銷活動、最新產品和特賣活動訊息。

"
}
},
{
"type": "paragraph",
"content": {
"da": "Alle kunder, der tilmelder sig, får oprettet en konto i Shopify. [Se kunder](/admin/customers?query=&accepts_marketing=1)",
"de": "Alle Kunden, die sich eintragen, bekommen ein Konto in Shopify. [Kunden ansehen](/admin/customers?query=&accepts_marketing=1)",
"en": "Any customers who sign up will have an account created for them in Shopify. [View customers](/admin/customers?query=&accepts_marketing=1)",
"es": "Todos los clientes que se registren tendrán una cuenta creada para ellos en Shopify. [Ver clientes](/admin/customers?query=&accepts_marketing=1)",
"fi": "Tilaaville asiakkaille luodaan tili Shopify-palvelussa. [Näytä asiakkaat](/admin/customers?query=&accepts_marketing=1)",
"fr": "Tous les clients qui s'inscrivent auront un compte créé pour eux sur Shopify. [Voir les clients](/admin/customers?query=&accepts_marketing=1)",
"hi": "साइन अप करने वाले कोई भी ग्राहक, के पास Shopify में खाता बनाया जाएगा. [ग्राहक देखें](/admin/customers?query=&accepts_marketing=1)",
"it": "Qualsiasi cliente che si iscrive avrà un account creato appositamente su Shopify. [Visualizza clienti](/admin/customers?query=&accepts_marketing=1)",
"ja": "サインアップしたお客様は、Shopifyでアカウントが作成されます。[お客様を表示](/admin/customers?query=&accepts_marketing=1)",
"ko": "가입한 고객은 Shopify에서 생성된 계정을 보유하게 됩니다. [고객보기](/admin/customers? query=& accepts_marketing=1)",
"nb": "Alle kunder som melder seg på, vil få opprettet en konto i Shopify. [Se kunder](/admin/customers?query=&accepts_marketing=1)",
"nl": "Voor alle klanten die zich aanmelden, wordt een Shopify-account gemaakt. [Klanten weergeven](/admin/customers?query=&accepts_marketing=1)",
"pt-BR": "Todos os clientes que se inscreverem terão uma conta criada para eles na Shopify. [Visualizar clientes](/admin/customers?query=&accepts_marketing=1)",
"pt-PT": "Será criada uma conta na Shopify para todos os clientes que se registarem. [Ver clientes](/admin/customers?query=&accepts_marketing=1)",
"sv": "Alla kunder som registrerar sig kommer att få ett konto skapat i Shopify. [Visa kunder](/ admin / kunder? Query = & accepts_marketing = 1)",
"th": "ระบบจะสร้างบัญชีผู้ใช้ใน Shopify ให้แก่ลูกค้ารายใดก็ตามที่ลงทะเบียน [ดูลูกค้า](/admin/customers?query=&accepts_marketing=1)",
"zh-CN": "任何注册用户都将在 Shopify 中拥有一个为他们创建的账户。[查看客户](/admin/customers?query=&accepts_marketing=1)",
"zh-TW": "顧客註冊後就可以擁有 Shopify 的帳戶。[檢視顧客](/admin/customers?query=&accepts_marketing=1)"
}
},
{
"type": "select",
"id": "width",
"label": {
"da": "Containerbredde",
"de": "Breite des Elements",
"en": "Container width",
"es": "Ancho del contenedor",
"fi": "Säiliön leveys",
"fr": "Largeur du conteneur",
"hi": "कंटेनर की चौड़ाई",
"it": "Larghezza contenitore",
"ja": "コンテナーの幅",
"ko": "컨테이너 폭",
"nb": "Beholderbredde",
"nl": "Containerbreedte",
"pt-BR": "Largura do contêiner",
"pt-PT": "Largura do recipiente",
"sv": "Container-bredd",
"th": "ความกว้างของความจุ",
"zh-CN": "容器宽度",
"zh-TW": "容器寬度"
},
"default": "33%",
"options": [
{
"value": "25%",
"label": {
"da": "25 %",
"de": "25%",
"en": "25%",
"es": "25%",
"fi": "25 %",
"fr": "25 %",
"hi": "25%",
"it": "25%",
"ja": "25%",
"ko": "25%",
"nb": "25 %",
"nl": "25%",
"pt-BR": "25%",
"pt-PT": "25%",
"sv": "25 %",
"th": "25%",
"zh-CN": "25%",
"zh-TW": "25%"
}
},
{
"value": "33%",
"label": {
"da": "33 %",
"de": "33%",
"en": "33%",
"es": "33%",
"fi": "33 %",
"fr": "33 %",
"hi": "33%",
"it": "33%",
"ja": "33%",
"ko": "33%",
"nb": "33 %",
"nl": "33%",
"pt-BR": "33%",
"pt-PT": "33%",
"sv": "33 %",
"th": "33%",
"zh-CN": "33%",
"zh-TW": "33%"
}
},
{
"value": "50%",
"label": {
"da": "50 %",
"de": "50%",
"en": "50%",
"es": "50%",
"fi": "50 %",
"fr": "50 %",
"hi": "50%",
"it": "50%",
"ja": "50%",
"ko": "50%",
"nb": "50 %",
"nl": "50%",
"pt-BR": "50%",
"pt-PT": "50%",
"sv": "50 %",
"th": "50%",
"zh-CN": "50%",
"zh-TW": "50%"
}
},
{
"value": "66%",
"label": {
"da": "66 %",
"de": "66%",
"en": "66%",
"es": "66%",
"fi": "66 %",
"fr": "66 %",
"hi": "66%",
"it": "66%",
"ja": "66%",
"ko": "66%",
"nb": "66 %",
"nl": "66%",
"pt-BR": "66%",
"pt-PT": "66%",
"sv": "66 %",
"th": "66%",
"zh-CN": "66%",
"zh-TW": "66%"
}
},
{
"value": "75%",
"label": {
"da": "75 %",
"de": "75%",
"en": "75%",
"es": "75%",
"fi": "75 %",
"fr": "75 %",
"hi": "75%",
"it": "75%",
"ja": "75%",
"ko": "75%",
"nb": "75 %",
"nl": "75%",
"pt-BR": "75%",
"pt-PT": "75%",
"sv": "75 %",
"th": "75%",
"zh-CN": "75%",
"zh-TW": "75%"
}
},
{
"value": "100%",
"label": {
"da": "100 %",
"de": "100%",
"en": "100%",
"es": "100%",
"fi": "100 %",
"fr": "100 %",
"hi": "100%",
"it": "100%",
"ja": "100%",
"ko": "100%",
"nb": "100 %",
"nl": "100%",
"pt-BR": "100%",
"pt-PT": "100%",
"sv": "100 %",
"th": "100%",
"zh-CN": "100%",
"zh-TW": "100%"
}
}
]
}
]
}
]
}
{% endschema %}
1 Like

Thank you so much!

It’s working!

Appreciating your time into this!

1 Like

@RazKen

its my pleasure to help us

1 Like

Hello

I tried saving it but I keep getting an error and it won’t save

Hi Ketan!

I have the same problem as everyone else. My url: www.moonahwear.com Klarna nor Paytrail are showing up in my footer. Do you know how to fix this?

Appreciate your help

1 Like

@evamoon

oh sorry for that issue can you please share footer section code

1 Like

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

1 Like

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

data-section-type=“footer-section”>
{%- 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 }}

aria-expanded=“false” aria-controls=“LangList”
aria-describedby=“LangHeading” data-disclosure-toggle>

{{ form.current_locale.endonym_name }}

{%- for locale in form.available_locales -%}

  • if locale.iso_code == form.current_locale.iso_code %}aria-current=“true”{%
    endif %} data-value=“{{ locale.iso_code }}” data-disclosure-option>
    {{ locale.endonym_name }}

{%- endfor -%}

{%- endif -%}

{%- if currency_selector -%}

{{ ‘general.currency.dropdown_label’ | t }}

aria-expanded=“false” aria-controls=“CurrencyList”
aria-describedby=“CurrencyHeading” data-disclosure-toggle>
{%- if section.settings.show_currency_flags -%}

{%- endif -%}

{{ form.current_currency.iso_code }} {%- if form.current_currency.symbol
-%}{{ form.current_currency.symbol }}{%- endif -%}

{%- for currency in form.available_currencies -%}

  • form.current_currency.iso_code %}aria-current=“true”{% endif %}
    data-value=“{{ currency.iso_code }}” data-disclosure-option>
    {%- if section.settings.show_currency_flags -%}

    aria-hidden=“true”>
    {%- endif -%}

    {{ currency.iso_code }} {%- if currency.symbol -%}{{ currency.symbol }}{%-
    endif -%}

{%- endfor -%}

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

@evamoon

yes, please add this code

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

 
{% 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](/admin/customers?query=&accepts_marketing=1).",
"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.](/admin/settings/languages)"
},
{
"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.](/admin/settings/payments)"
},
{
"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 %}