Pages not showing on my footer menu.

Topic summary

A user encountered an issue where two pages (Disclaimer and Contact Us) weren’t displaying in their footer menu despite being linked. Multiple respondents identified the root cause: the footer was displaying Policy links instead of the selected menu.

Solution provided:

  • The footer needed to use a Quick Links block with the Customer Care menu selected, rather than relying on the automatic Policy links option
  • One helper provided modified footer.liquid code that added a new “policy_menu” setting, allowing manual menu selection in the Theme Editor
  • After implementing the code changes, the user needed to reselect their menu in the Footer section of the Theme Customizer

Additional request:

  • The user also wanted to remove the “Contact Information” section from the footer (suggested solutions: delete via Theme Editor or remove from footer.liquid)

Outcome:
The issue was successfully resolved for the original site (organicmelody.com.au). The user then requested help with an identical problem on a second site (prestigechess.com), which was also resolved using the same code modification approach.

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

Hello,

Hope you are well. It seems like the 2 pages on my footer menu are not showing (Disclaimer and Contact Us). I have linked the pages but doesn’t seem to show on footer. Also I would like to remove the ‘Contact Information’ on the footer section too.

Any help is greatly appreciated.

organicmelody.com.au

1 Like

Hey @jackthomasp ,

Your “Disclaimer and Liability” and “Contact Us” links aren’t showing because the footer may not be using the Customer Care menu.

Fix: Go to Online Store > Themes > Customize > Footer section, and make sure the Customer Care menu is selected.

To remove “Contact Information”, either:

  • Remove it in the Footer section of the Theme Editor, or

  • Edit footer.liquid and delete the line with “Contact Information”.

If you want help, please feel free to reach out — I’m happy to assist anytime! !

Best Regard,
Rajat

Hi @jackthomasp

The links on your image belong to Policy links option of your Footer. To display links of the menu, you must add a quicklink and select your Customer Care

menu

Hi @jackthomasp ,

I checked and the footer is currently showing the list of Policy links, it is not selected in the menu.

If you want to change it, please send me the code of footer.liquid file, I will check and guide you.

Hi mate thanks for your quick reply,

Here is the code for the footer.liquid file, thanks

{% comment %}theme-check-disable UndefinedObject{% endcomment %}
{{ ‘section-footer.css’ | asset_url | stylesheet_tag }}
{{ ‘component-newsletter.css’ | asset_url | stylesheet_tag }}
{{ ‘component-list-menu.css’ | asset_url | stylesheet_tag }}
{{ ‘component-list-payment.css’ | asset_url | stylesheet_tag }}
{{ ‘component-list-social.css’ | asset_url | stylesheet_tag }}

{%- style -%}
.footer {
margin-top: {{ section.settings.margin_top | times: 0.75 | round: 0 }}px;
}

.section-{{ section.id }}-padding {
padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

@media screen and (min-width: 750px) {
.footer {
margin-top: {{ section.settings.margin_top }}px;
}

.section-{{ section.id }}-padding {
padding-top: {{ section.settings.padding_top }}px;
padding-bottom: {{ section.settings.padding_bottom }}px;
}
}
{%- endstyle -%}

{%- liquid assign has_social_icons = true if settings.social_facebook_link == blank and settings.social_instagram_link == blank and settings.social_youtube_link == blank and settings.social_tiktok_link == blank and settings.social_twitter_link == blank and settings.social_pinterest_link == blank and settings.social_snapchat_link == blank and settings.social_tumblr_link == blank and settings.social_vimeo_link == blank assign has_social_icons = false endif

if settings.brand_image == blank and settings.brand_headline == blank and settings.brand_description == blank
assign brand_empty = true
endif

if section.blocks.size == 1 and section.blocks[0].type == ‘brand_information’ and brand_empty and has_social_icons == false and section.settings.newsletter_enable == false and section.settings.enable_follow_on_shop == false
assign only_empty_brand = true
endif
-%}
{%- if section.blocks.size > 0
or section.settings.newsletter_enable
or section.settings.show_social
and has_social_icons == true
or section.settings.enable_follow_on_shop
-%}
{%- unless only_empty_brand -%}

{%- if section.blocks.size > 0 -%} {%- liquid if section.blocks.size == 9 assign footer_grid_class = 'grid--3-col-tablet' elsif section.blocks.size > 6 assign footer_grid_class = 'grid--4-col-desktop' elsif section.blocks.size > 4 assign footer_grid_class = 'grid--3-col-tablet' endif -%}
{%- for block in section.blocks -%}
{%- if block.settings.heading != blank -%}

{{- block.settings.heading -}}

{%- endif -%}

{%- case block.type -%}
{%- when ‘@app’ -%}
{% render block %}
{%- when ‘text’ -%}

{{ block.settings.subtext }}
{%- when 'link_list' -%} {%- if block.settings.menu != blank -%} {%- endif -%} {%- when 'brand_information' -%}
{%- if settings.brand_image != blank -%} {%- assign brand_image_height = settings.brand_image_width | divided_by: settings.brand_image.aspect_ratio -%}
{{ settings.brand_image | image_url: width: 1100 | image_tag: loading: 'lazy', widths: '50, 100, 150, 200, 300, 400, 550, 800, 1100', height: brand_image_height, width: settings.brand_image_width }}
{%- endif -%} {%- if settings.brand_headline != blank -%}

{{ settings.brand_headline }}

{%- endif -%} {%- if settings.brand_description != blank -%}
{{ settings.brand_description }}
{%- endif -%} {%- if block.settings.show_social and has_social_icons -%} {%- render 'social-icons', class: 'footer__list-social' -%} {%- endif -%}
{%- when 'image' -%}
{%- if block.settings.image != blank -%} {%- assign image_size_2x = block.settings.image_width | times: 2 | at_most: 5760 -%}
{{ block.settings.image.alt | escape }}
{%- else -%} {{ 'image' | placeholder_svg_tag: 'placeholder-svg placeholder' }} {%- endif -%}
{%- endcase -%}
{%- endfor -%}
{%- endif -%}
{%- if section.settings.newsletter_enable -%}
{%- if section.settings.newsletter_heading != blank -%}

{{ section.settings.newsletter_heading }}

{%- endif -%} {%- form 'customer', id: 'ContactFooter', class: 'footer__newsletter newsletter-form' -%}
{{ 'newsletter.label' | t }} {{- 'icon-arrow.svg' | inline_asset_content -}}
{%- if form.errors -%} {{- 'icon-error.svg' | inline_asset_content -}} {{- form.errors.translated_fields.email | capitalize }} {{ form.errors.messages.email -}} {%- endif -%}
{%- if form.posted_successfully? -%}

{{- 'icon-success.svg' | inline_asset_content -}} {{- 'newsletter.success' | t }}

{%- endif -%} {%- endform -%}
{%- endif -%}

{%- if shop.features.follow_on_shop? and section.settings.enable_follow_on_shop -%}

{{ shop | login_button: action: 'follow' }}
{%- endif -%}

{%- if section.settings.show_social and has_social_icons -%}
{%- render ‘social-icons’, class: ‘footer__list-social’ -%}
{%- endif -%}

{%- endunless -%} {%- endif -%}
{%- if section.settings.enable_country_selector and localization.available_countries.size > 1 -%} {%- form 'localization', id: 'FooterCountryForm', class: 'localization-form' -%}

{{ 'localization.country_label' | t }}

{%- render 'country-localization', localPosition: 'FooterCountry' -%}
{%- endform -%} {%- endif -%}

{%- if section.settings.enable_language_selector and localization.available_languages.size > 1 -%}

{%- form ‘localization’, id: ‘FooterLanguageForm’, class: ‘localization-form’ -%}

{{ 'localization.language_label' | t }}

{%- render 'language-localization', localPosition: 'FooterLanguage' -%}
{%- endform -%} {%- endif -%}
{%- if section.settings.payment_enable -%}
{{ 'sections.footer.payment' | t }}
    {%- for type in shop.enabled_payment_types -%}
  • {{ type | payment_type_svg_tag: class: 'icon icon--full-color' }}
  • {%- endfor -%}
{%- endif -%}
© {{ 'now' | date: '%Y' }}, {{ shop.name | link_to: routes.root_url -}} {{ powered_by_link }} {%- if section.settings.show_policy -%} {%- endif -%}

{% schema %}
{
“name”: “t:sections.footer.name”,
“blocks”: [
{
“type”: “@app
},
{
“type”: “link_list”,
“name”: “t:sections.footer.blocks.link_list.name”,
“settings”: [
{
“type”: “inline_richtext”,
“id”: “heading”,
“default”: “t:sections.footer.blocks.link_list.settings.heading.default”,
“label”: “t:sections.footer.blocks.link_list.settings.heading.label”
},
{
“type”: “link_list”,
“id”: “menu”,
“default”: “footer”,
“label”: “t:sections.footer.blocks.link_list.settings.menu.label”
}
]
},
{
“type”: “brand_information”,
“name”: “t:sections.footer.blocks.brand_information.name”,
“settings”: [
{
“type”: “paragraph”,
“content”: “t:sections.footer.blocks.brand_information.settings.paragraph.content”
},
{
“type”: “checkbox”,
“id”: “show_social”,
“default”: true,
“label”: “t:sections.footer.blocks.brand_information.settings.show_social.label”,
“info”: “t:sections.footer.blocks.brand_information.settings.show_social.info”
}
]
},
{
“type”: “text”,
“name”: “t:sections.footer.blocks.text.name”,
“settings”: [
{
“type”: “inline_richtext”,
“id”: “heading”,
“default”: “t:sections.footer.blocks.text.settings.heading.default”,
“label”: “t:sections.footer.blocks.text.settings.heading.label”
},
{
“type”: “richtext”,
“id”: “subtext”,
“default”: “t:sections.footer.blocks.text.settings.subtext.default”,
“label”: “t:sections.footer.blocks.text.settings.subtext.label”
}
]
},
{
“type”: “image”,
“name”: “Image”,
“settings”: [
{
“type”: “image_picker”,
“id”: “image”,
“label”: “Image”
},
{
“type”: “range”,
“id”: “image_width”,
“min”: 50,
“max”: 550,
“step”: 5,
“unit”: “px”,
“label”: “Width”,
“default”: 100
},
{
“type”: “select”,
“id”: “alignment”,
“label”: “Alignment”,
“options”: [
{
“value”: “”,
“label”: “Left”
},
{
“value”: “center”,
“label”: “Center”
},
{
“value”: “right”,
“label”: “Right”
}
],
“default”: “center”
}
]
}
],
“settings”: [
{
“type”: “color_scheme”,
“id”: “color_scheme”,
“label”: “t:sections.all.colors.label”,
“default”: “scheme-1”
},
{
“type”: “header”,
“content”: “t:sections.footer.settings.header__1.content”,
“info”: “t:sections.footer.settings.header__1.info”
},
{
“type”: “checkbox”,
“id”: “newsletter_enable”,
“default”: true,
“label”: “t:sections.footer.settings.newsletter_enable.label”
},
{
“type”: “inline_richtext”,
“id”: “newsletter_heading”,
“default”: “t:sections.footer.settings.newsletter_heading.default”,
“label”: “t:sections.footer.settings.newsletter_heading.label”
},
{
“type”: “header”,
“content”: “t:sections.footer.settings.header__9.content”
},
{
“type”: “checkbox”,
“id”: “enable_follow_on_shop”,
“default”: true,
“label”: “t:sections.footer.settings.enable_follow_on_shop.label”,
“info”: “t:sections.footer.settings.enable_follow_on_shop.info”
},
{
“type”: “checkbox”,
“id”: “show_social”,
“default”: true,
“label”: “t:sections.footer.settings.show_social.label”,
“info”: “t:sections.footer.settings.show_social.info”
},
{
“type”: “checkbox”,
“id”: “enable_country_selector”,
“default”: true,
“label”: “t:sections.footer.settings.enable_country_selector.label”,
“info”: “t:sections.footer.settings.enable_country_selector.info”
},
{
“type”: “checkbox”,
“id”: “enable_language_selector”,
“default”: true,
“label”: “t:sections.footer.settings.enable_language_selector.label”,
“info”: “t:sections.footer.settings.enable_language_selector.info”
},
{
“type”: “checkbox”,
“id”: “payment_enable”,
“default”: true,
“label”: “t:sections.footer.settings.payment_enable.label”
},
{
“type”: “checkbox”,
“id”: “show_policy”,
“default”: true,
“label”: “t:sections.footer.settings.show_policy.label”,
“info”: “t:sections.footer.settings.show_policy.info”
},
{
“type”: “header”,
“content”: “t:sections.all.spacing”
},
{
“type”: “range”,
“id”: “margin_top”,
“min”: 0,
“max”: 100,
“step”: 4,
“unit”: “px”,
“label”: “t:sections.footer.settings.margin_top.label”,
“default”: 0
},
{
“type”: “header”,
“content”: “t:sections.all.padding.section_padding_heading”
},
{
“type”: “range”,
“id”: “padding_top”,
“min”: 0,
“max”: 100,
“step”: 4,
“unit”: “px”,
“label”: “t:sections.all.padding.padding_top”,
“default”: 36
},
{
“type”: “range”,
“id”: “padding_bottom”,
“min”: 0,
“max”: 100,
“step”: 4,
“unit”: “px”,
“label”: “t:sections.all.padding.padding_bottom”,
“default”: 36
}
],
“default”: {
“blocks”: [
{
“type”: “link_list”
},
{
“type”: “text”
}
]
}
}
{% endschema %}

Hi @jackthomasp ,

Please change all code:

{% comment %}theme-check-disable UndefinedObject{% endcomment %}
{{ 'section-footer.css' | asset_url | stylesheet_tag }}
{{ 'component-newsletter.css' | asset_url | stylesheet_tag }}
{{ 'component-list-menu.css' | asset_url | stylesheet_tag }}
{{ 'component-list-payment.css' | asset_url | stylesheet_tag }}
{{ 'component-list-social.css' | asset_url | stylesheet_tag }}

{%- style -%}
.footer {
margin-top: {{ section.settings.margin_top | times: 0.75 | round: 0 }}px;
}

.section-{{ section.id }}-padding {
padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

@media screen and (min-width: 750px) {
.footer {
margin-top: {{ section.settings.margin_top }}px;
}

.section-{{ section.id }}-padding {
padding-top: {{ section.settings.padding_top }}px;
padding-bottom: {{ section.settings.padding_bottom }}px;
}
}
{%- endstyle -%}

{% schema %}
{
"name": "t:sections.footer.name",
"blocks": [
{
"type": "@app"
},
{
"type": "link_list",
"name": "t:sections.footer.blocks.link_list.name",
"settings": [
{
"type": "inline_richtext",
"id": "heading",
"default": "t:sections.footer.blocks.link_list.settings.heading.default",
"label": "t:sections.footer.blocks.link_list.settings.heading.label"
},
{
"type": "link_list",
"id": "menu",
"default": "footer",
"label": "t:sections.footer.blocks.link_list.settings.menu.label"
}
]
},
{
"type": "brand_information",
"name": "t:sections.footer.blocks.brand_information.name",
"settings": [
{
"type": "paragraph",
"content": "t:sections.footer.blocks.brand_information.settings.paragraph.content"
},
{
"type": "checkbox",
"id": "show_social",
"default": true,
"label": "t:sections.footer.blocks.brand_information.settings.show_social.label",
"info": "t:sections.footer.blocks.brand_information.settings.show_social.info"
}
]
},
{
"type": "text",
"name": "t:sections.footer.blocks.text.name",
"settings": [
{
"type": "inline_richtext",
"id": "heading",
"default": "t:sections.footer.blocks.text.settings.heading.default",
"label": "t:sections.footer.blocks.text.settings.heading.label"
},
{
"type": "richtext",
"id": "subtext",
"default": "t:sections.footer.blocks.text.settings.subtext.default",
"label": "t:sections.footer.blocks.text.settings.subtext.label"
}
]
},
{
"type": "image",
"name": "Image",
"settings": [
{
"type": "image_picker",
"id": "image",
"label": "Image"
},
{
"type": "range",
"id": "image_width",
"min": 50,
"max": 550,
"step": 5,
"unit": "px",
"label": "Width",
"default": 100
},
{
"type": "select",
"id": "alignment",
"label": "Alignment",
"options": [
{
"value": "",
"label": "Left"
},
{
"value": "center",
"label": "Center"
},
{
"value": "right",
"label": "Right"
}
],
"default": "center"
}
]
}
],
"settings": [
{
"type": "color_scheme",
"id": "color_scheme",
"label": "t:sections.all.colors.label",
"default": "scheme-1"
},
{
"type": "header",
"content": "t:sections.footer.settings.header__1.content",
"info": "t:sections.footer.settings.header__1.info"
},
{
"type": "checkbox",
"id": "newsletter_enable",
"default": true,
"label": "t:sections.footer.settings.newsletter_enable.label"
},
{
"type": "inline_richtext",
"id": "newsletter_heading",
"default": "t:sections.footer.settings.newsletter_heading.default",
"label": "t:sections.footer.settings.newsletter_heading.label"
},
{
"type": "header",
"content": "t:sections.footer.settings.header__9.content"
},
{
"type": "checkbox",
"id": "enable_follow_on_shop",
"default": true,
"label": "t:sections.footer.settings.enable_follow_on_shop.label",
"info": "t:sections.footer.settings.enable_follow_on_shop.info"
},
{
"type": "checkbox",
"id": "show_social",
"default": true,
"label": "t:sections.footer.settings.show_social.label",
"info": "t:sections.footer.settings.show_social.info"
},
{
"type": "checkbox",
"id": "enable_country_selector",
"default": true,
"label": "t:sections.footer.settings.enable_country_selector.label",
"info": "t:sections.footer.settings.enable_country_selector.info"
},
{
"type": "checkbox",
"id": "enable_language_selector",
"default": true,
"label": "t:sections.footer.settings.enable_language_selector.label",
"info": "t:sections.footer.settings.enable_language_selector.info"
},
{
"type": "checkbox",
"id": "payment_enable",
"default": true,
"label": "t:sections.footer.settings.payment_enable.label"
},
{
"type": "checkbox",
"id": "show_policy",
"default": true,
"label": "t:sections.footer.settings.show_policy.label",
"info": "t:sections.footer.settings.show_policy.info"
},
{
"type": "link_list",
"id": "policy_menu",
"default": "footer",
"label": "Policy menu"
},
{
"type": "header",
"content": "t:sections.all.spacing"
},
{
"type": "range",
"id": "margin_top",
"min": 0,
"max": 100,
"step": 4,
"unit": "px",
"label": "t:sections.footer.settings.margin_top.label",
"default": 0
},
{
"type": "header",
"content": "t:sections.all.padding.section_padding_heading"
},
{
"type": "range",
"id": "padding_top",
"min": 0,
"max": 100,
"step": 4,
"unit": "px",
"label": "t:sections.all.padding.padding_top",
"default": 36
},
{
"type": "range",
"id": "padding_bottom",
"min": 0,
"max": 100,
"step": 4,
"unit": "px",
"label": "t:sections.all.padding.padding_bottom",
"default": 36
}
],
"default": {
"blocks": [
{
"type": "link_list"
},
{
"type": "text"
}
]
}
}
{% endschema %}

then you just need to select the menu again here, it will display fine:

1 Like

Thanks mate thats great

I actually had the same issue with another site would you be able to help with that as well please, exact same issue. I tried to paste the code in there but said there was an issue with the colour schemes.

www.prestigechess.com

Here is the footer.liquid for that site

{% comment %}theme-check-disable UndefinedObject{% endcomment %}

{{ ‘section-footer.css’ | asset_url | stylesheet_tag }}

{{ ‘component-newsletter.css’ | asset_url | stylesheet_tag }}

{{ ‘component-list-menu.css’ | asset_url | stylesheet_tag }}

{{ ‘component-list-payment.css’ | asset_url | stylesheet_tag }}

{{ ‘component-list-social.css’ | asset_url | stylesheet_tag }}

{%- if section.settings.enable_country_selector or section.settings.enable_language_selector -%}

{{ ‘component-localization-form.css’ | asset_url | stylesheet_tag }}

{%- endif -%}

{%- style -%}

.footer {

margin-top: {{ section.settings.margin_top | times: 0.75 | round: 0 }}px;

}

.section-{{ section.id }}-padding {

padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;

padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;

}

@media screen and (min-width: 750px) {

.footer {

margin-top: {{ section.settings.margin_top }}px;

}

.section-{{ section.id }}-padding {

padding-top: {{ section.settings.padding_top }}px;

padding-bottom: {{ section.settings.padding_bottom }}px;

}

}

{%- endstyle -%}

{%- liquid

assign has_social_icons = true

if settings.social_facebook_link == blank and settings.social_instagram_link == blank and settings.social_youtube_link == blank and settings.social_tiktok_link == blank and settings.social_twitter_link == blank and settings.social_pinterest_link == blank and settings.social_snapchat_link == blank and settings.social_tumblr_link == blank and settings.social_vimeo_link == blank

assign has_social_icons = false

endif

if settings.brand_image == blank and settings.brand_headline == blank and settings.brand_description == blank

assign brand_empty = true

endif

if section.blocks.size == 1 and section.blocks[0].type == ‘brand_information’ and brand_empty and has_social_icons == false and section.settings.newsletter_enable == false and section.settings.enable_follow_on_shop == false

assign only_empty_brand = true

endif

-%}

{%- if section.blocks.size > 0

or section.settings.newsletter_enable

or section.settings.show_social

or section.settings.enable_follow_on_shop

-%}

{%- unless only_empty_brand -%}

{%- if section.blocks.size > 0 -%}

{%- liquid

if section.blocks.size == 9

assign footer_grid_class = ‘grid–3-col-tablet’

elsif section.blocks.size > 6

assign footer_grid_class = ‘grid–4-col-desktop’

elsif section.blocks.size > 4

assign footer_grid_class = ‘grid–3-col-tablet’

endif

-%}

{%- for block in section.blocks -%}

<div

class=“footer-block grid__item{% if block.type == ‘link_list’ %} footer-block–menu{% endif %}”

{{ block.shopify_attributes }}

{%- if block.settings.heading != blank -%}

{{- block.settings.heading -}}

{%- endif -%}

{%- case block.type -%}

{%- when ‘@app’ -%}

{% render block %}

{%- when ‘text’ -%}

{{ block.settings.subtext }}

{%- when ‘link_list’ -%}

{%- if block.settings.menu != blank -%}

    {%- for link in block.settings.menu.links -%}

  • <a

    href=“{{ link.url }}”

    class=“link link–text list-menu__item list-menu__item–link{% if link.active %} list-menu__item–active{% endif %}”

    {{ link.title }}

  • {%- endfor -%}

{%- endif -%}

{%- when ‘brand_information’ -%}

{%- if settings.brand_image != blank -%}

{%- assign brand_image_height = settings.brand_image_width

| divided_by: settings.brand_image.aspect_ratio

-%}

<div

class=“footer-block__image-wrapper global-media-settings”

style=“max-width: min(100%, {{ settings.brand_image_width }}px);”

{{

settings.brand_image

| image_url: width: 1100

| image_tag:

loading: ‘lazy’,

widths: ‘50, 100, 150, 200, 300, 400, 550, 800, 1100’,

height: brand_image_height,

width: settings.brand_image_width

}}

{%- endif -%}

{%- if settings.brand_headline != blank -%}

{{ settings.brand_headline }}

{%- endif -%}

{%- if settings.brand_description != blank -%}

{{ settings.brand_description }}

{%- endif -%}

{%- if block.settings.show_social and has_social_icons -%}

{%- render ‘social-icons’ -%}

{%- endif -%}

{%- when ‘image’ -%}

{%- if block.settings.image != blank -%}

{%- assign image_size_2x = block.settings.image_width | times: 2 | at_most: 5760 -%}

<div

class=“footer-block__image-wrapper global-media-settings”

style=“max-width: min(100%, {{ block.settings.image_width }}px);”

<img

srcset=“{{ block.settings.image | image_url: width: block.settings.image_width }}, {{ block.settings.image | image_url: width: image_size_2x }} 2x”

src=“{{ block.settings.image | image_url: width: 760 }}”

alt=“{{ block.settings.image.alt | escape }}”

loading=“lazy”

width=“{{ block.settings.image.width }}”

height=“{{ block.settings.image.height }}”

{%- else -%}

{{ ‘image’ | placeholder_svg_tag: ‘placeholder-svg placeholder’ }}

{%- endif -%}

{%- endcase -%}

{%- endfor -%}

{%- endif -%}

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

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

{{ section.settings.newsletter_heading }}

{%- endif -%}

{%- form ‘customer’, id: ‘ContactFooter’, class: ‘footer__newsletter newsletter-form’ -%}

<input

id=“NewsletterForm–{{ section.id }}”

type=“email”

name=“contact[email]”

class=“field__input”

value=“{{ form.email }}”

aria-required=“true”

autocorrect=“off”

autocapitalize=“off”

autocomplete=“email”

{% if form.errors %}

autofocus

aria-invalid=“true”

aria-describedby=“ContactFooter-error”

{% elsif form.posted_successfully? %}

aria-describedby=“ContactFooter-success”

{% endif %}

placeholder=“{{ ‘newsletter.label’ | t }}”

required

{{ ‘newsletter.label’ | t }}

<button

type=“submit”

class=“newsletter-form__button field__button”

name=“commit”

id=“Subscribe”

aria-label=“{{ ‘newsletter.button_label’ | t }}”

{% render ‘icon-arrow’ %}

{%- if form.errors -%}

{%- render ‘icon-error’ -%}

{{- form.errors.translated_fields.email | capitalize }}

{{ form.errors.messages.email -}}

{%- endif -%}

{%- if form.posted_successfully? -%}

<h3

class=“newsletter-form__message newsletter-form__message–success form__message”

id=“ContactFooter-success”

tabindex=“-1”

autofocus

{% render ‘icon-success’ -%}

{{- ‘newsletter.success’ | t }}

{%- endif -%}

{%- endform -%}

{%- endif -%}

{%- if shop.features.follow_on_shop? and section.settings.enable_follow_on_shop -%}

{% comment %} TODO: enable theme-check once login_button is accepted as valid filter {% endcomment %}

{% # theme-check-disable %}

{{ shop | login_button: action: ‘follow’ }}

{% # theme-check-enable %}

{%- endif -%}

{%- if section.settings.show_social and has_social_icons -%}

{%- render ‘social-icons’ -%}

{%- endif -%}

{%- endunless -%}

{%- endif -%}

{%- if section.settings.enable_country_selector and localization.available_countries.size > 1 -%}

{%- form ‘localization’, id: ‘FooterCountryFormNoScript’, class: ‘localization-form’ -%}

{{ 'localization.country_label' | t }}

<select

class=“localization-selector link”

name=“country_code”

aria-labelledby=“FooterCountryLabelNoScript”

{%- for country in localization.available_countries -%}

<option

value=“{{ country.iso_code }}”

{%- if country.iso_code == localization.country.iso_code %}

selected

{% endif %}

{{ country.name }} ({{ country.currency.iso_code }}

{{ country.currency.symbol }})

{%- endfor -%}

{% render ‘icon-caret’ %}

{{ ‘localization.update_country’ | t }}

{%- endform -%}

{%- form ‘localization’, id: ‘FooterCountryForm’, class: ‘localization-form’ -%}

{{ 'localization.country_label' | t }}

{%- render ‘country-localization’, localPosition: ‘FooterCountry’ -%}

{%- endform -%}

{%- endif -%}

{%- if section.settings.enable_language_selector and localization.available_languages.size > 1 -%}

{%- form ‘localization’, id: ‘FooterLanguageFormNoScript’, class: ‘localization-form’ -%}

{{ ‘localization.language_label’ | t }}

<select

class=“localization-selector link”

name=“locale_code”

aria-labelledby=“FooterLanguageLabelNoScript”

{%- for language in localization.available_languages -%}

<option

value=“{{ language.iso_code }}”

lang=“{{ language.iso_code }}”

{%- if language.iso_code == localization.language.iso_code %}

selected

{% endif %}

{{ language.endonym_name | capitalize }}

{%- endfor -%}

{% render ‘icon-caret’ %}

{{ ‘localization.update_language’ | t }}

{%- endform -%}

{%- form ‘localization’, id: ‘FooterLanguageForm’, class: ‘localization-form’ -%}

{{ ‘localization.language_label’ | t }}

{%- render ‘language-localization’, localPosition: ‘FooterLanguage’ -%}

{%- endform -%}

{%- endif -%}

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

{{ ‘sections.footer.payment’ | t }}

    {%- for type in shop.enabled_payment_types -%}

  • {{ type | payment_type_svg_tag: class: ‘icon icon–full-color’ }}

  • {%- endfor -%}

{%- endif -%}

<small class=“copyright__content”

© {{ ‘now’ | date: ‘%Y’ }}, {{ shop.name | link_to: routes.root_url -}}

{{ powered_by_link }}

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

    {%- for policy in shop.policies -%}

    {%- if policy != blank -%}

  • <small class=“copyright__content”

    {{ policy.title }}</small

  • {%- endif -%}

    {%- endfor -%}

{%- endif -%}

{%- if section.settings.enable_country_selector or section.settings.enable_language_selector -%}

{%- endif -%}

{% schema %}

{

“name”: “t:sections.footer.name”,

“blocks”: [

{

“type”: “@app

},

{

“type”: “link_list”,

“name”: “t:sections.footer.blocks.link_list.name”,

“settings”: [

{

“type”: “inline_richtext”,

“id”: “heading”,

“default”: “Quick links”,

“label”: “t:sections.footer.blocks.link_list.settings.heading.label”

},

{

“type”: “link_list”,

“id”: “menu”,

“default”: “footer”,

“label”: “t:sections.footer.blocks.link_list.settings.menu.label”,

“info”: “t:sections.footer.blocks.link_list.settings.menu.info”

}

]

},

{

“type”: “brand_information”,

“name”: “t:sections.footer.blocks.brand_information.name”,

“settings”: [

{

“type”: “paragraph”,

“content”: “t:sections.footer.blocks.brand_information.settings.paragraph.content”

},

{

“type”: “header”,

“content”: “t:sections.footer.blocks.brand_information.settings.header__1.content”

},

{

“type”: “checkbox”,

“id”: “show_social”,

“default”: true,

“label”: “t:sections.footer.blocks.brand_information.settings.show_social.label”,

“info”: “t:sections.footer.blocks.brand_information.settings.show_social.info”

}

]

},

{

“type”: “text”,

“name”: “t:sections.footer.blocks.text.name”,

“settings”: [

{

“type”: “inline_richtext”,

“id”: “heading”,

“default”: “Heading”,

“label”: “t:sections.footer.blocks.text.settings.heading.label”

},

{

“type”: “richtext”,

“id”: “subtext”,

“default”: “

Share contact information, store details, and brand content with your customers.

”,

“label”: “t:sections.footer.blocks.text.settings.subtext.label”

}

]

},

{

“type”: “image”,

“name”: “Image”,

“settings”: [

{

“type”: “image_picker”,

“id”: “image”,

“label”: “Image”

},

{

“type”: “range”,

“id”: “image_width”,

“min”: 50,

“max”: 550,

“step”: 5,

“unit”: “px”,

“label”: “Image width”,

“default”: 100

},

{

“type”: “select”,

“id”: “alignment”,

“label”: “Image alignment on large screen”,

“options”: [

{

“value”: “”,

“label”: “Left”

},

{

“value”: “center”,

“label”: “Center”

},

{

“value”: “right”,

“label”: “Right”

}

],

“default”: “center”

}

]

}

],

“settings”: [

{

“type”: “select”,

“id”: “color_scheme”,

“options”: [

{

“value”: “accent-1”,

“label”: “t:sections.all.colors.accent_1.label”

},

{

“value”: “accent-2”,

“label”: “t:sections.all.colors.accent_2.label”

},

{

“value”: “background-1”,

“label”: “t:sections.all.colors.background_1.label”

},

{

“value”: “background-2”,

“label”: “t:sections.all.colors.background_2.label”

},

{

“value”: “inverse”,

“label”: “t:sections.all.colors.inverse.label”

}

],

“default”: “background-1”,

“label”: “t:sections.all.colors.label”

},

{

“type”: “header”,

“content”: “t:sections.footer.settings.header__1.content”,

“info”: “t:sections.footer.settings.header__1.info”

},

{

“type”: “checkbox”,

“id”: “newsletter_enable”,

“default”: true,

“label”: “t:sections.footer.settings.newsletter_enable.label”

},

{

“type”: “inline_richtext”,

“id”: “newsletter_heading”,

“default”: “Subscribe to our emails”,

“label”: “t:sections.footer.settings.newsletter_heading.label”

},

{

“type”: “header”,

“content”: “t:sections.footer.settings.header__9.content”,

“info”: “t:sections.footer.settings.header__9.info”

},

{

“type”: “checkbox”,

“id”: “enable_follow_on_shop”,

“default”: true,

“label”: “t:sections.footer.settings.enable_follow_on_shop.label”

},

{

“type”: “header”,

“content”: “t:sections.footer.settings.header__2.content”,

“info”: “t:sections.footer.settings.header__2.info”

},

{

“type”: “checkbox”,

“id”: “show_social”,

“default”: true,

“label”: “t:sections.footer.settings.show_social.label”

},

{

“type”: “header”,

“content”: “t:sections.footer.settings.header__3.content”,

“info”: “t:sections.footer.settings.header__4.info”

},

{

“type”: “checkbox”,

“id”: “enable_country_selector”,

“default”: true,

“label”: “t:sections.footer.settings.enable_country_selector.label”

},

{

“type”: “header”,

“content”: “t:sections.footer.settings.header__5.content”,

“info”: “t:sections.footer.settings.header__6.info”

},

{

“type”: “checkbox”,

“id”: “enable_language_selector”,

“default”: true,

“label”: “t:sections.footer.settings.enable_language_selector.label”

},

{

“type”: “header”,

“content”: “t:sections.footer.settings.header__7.content”

},

{

“type”: “checkbox”,

“id”: “payment_enable”,

“default”: true,

“label”: “t:sections.footer.settings.payment_enable.label”

},

{

“type”: “header”,

“content”: “t:sections.footer.settings.header__8.content”,

“info”: “t:sections.footer.settings.header__8.info”

},

{

“type”: “checkbox”,

“id”: “show_policy”,

“default”: false,

“label”: “t:sections.footer.settings.show_policy.label”

},

{

“type”: “header”,

“content”: “t:sections.all.spacing”

},

{

“type”: “range”,

“id”: “margin_top”,

“min”: 0,

“max”: 100,

“step”: 4,

“unit”: “px”,

“label”: “t:sections.footer.settings.margin_top.label”,

“default”: 0

},

{

“type”: “header”,

“content”: “t:sections.all.padding.section_padding_heading”

},

{

“type”: “range”,

“id”: “padding_top”,

“min”: 0,

“max”: 100,

“step”: 4,

“unit”: “px”,

“label”: “t:sections.all.padding.padding_top”,

“default”: 36

},

{

“type”: “range”,

“id”: “padding_bottom”,

“min”: 0,

“max”: 100,

“step”: 4,

“unit”: “px”,

“label”: “t:sections.all.padding.padding_bottom”,

“default”: 36

}

],

“default”: {

“blocks”: [

{

“type”: “link_list”

},

{

“type”: “text”

}

]

}

}

{% endschema %}

Here

Thanks mate!

Hi @jackthomasp ,

Please change all code:

{% comment %}theme-check-disable UndefinedObject{% endcomment %}

{{ 'section-footer.css' | asset_url | stylesheet_tag }}

{{ 'component-newsletter.css' | asset_url | stylesheet_tag }}

{{ 'component-list-menu.css' | asset_url | stylesheet_tag }}

{{ 'component-list-payment.css' | asset_url | stylesheet_tag }}

{{ 'component-list-social.css' | asset_url | stylesheet_tag }}

{%- if section.settings.enable_country_selector or section.settings.enable_language_selector -%}

  {{ 'component-localization-form.css' | asset_url | stylesheet_tag }}

{%- endif -%}

 

{%- style -%}

  .footer {

    margin-top: {{ section.settings.margin_top | times: 0.75 | round: 0 }}px;

  }

 

  .section-{{ section.id }}-padding {

    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;

    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;

  }

 

  @media screen and (min-width: 750px) {

    .footer {

      margin-top: {{ section.settings.margin_top }}px;

    }

 

    .section-{{ section.id }}-padding {

      padding-top: {{ section.settings.padding_top }}px;

      padding-bottom: {{ section.settings.padding_bottom }}px;

    }

  }

{%- endstyle -%}

 

 

{%- if section.settings.enable_country_selector or section.settings.enable_language_selector -%}

  

{%- endif -%}

 

{% schema %}

{

  "name": "t:sections.footer.name",

  "blocks": [

    {

      "type": "@app"

    },

    {

      "type": "link_list",

      "name": "t:sections.footer.blocks.link_list.name",

      "settings": [

        {

          "type": "inline_richtext",

          "id": "heading",

          "default": "Quick links",

          "label": "t:sections.footer.blocks.link_list.settings.heading.label"

        },

        {

          "type": "link_list",

          "id": "menu",

          "default": "footer",

          "label": "t:sections.footer.blocks.link_list.settings.menu.label",

          "info": "t:sections.footer.blocks.link_list.settings.menu.info"

        }

      ]

    },

    {

      "type": "brand_information",

      "name": "t:sections.footer.blocks.brand_information.name",

      "settings": [

        {

          "type": "paragraph",

          "content": "t:sections.footer.blocks.brand_information.settings.paragraph.content"

        },

        {

          "type": "header",

          "content": "t:sections.footer.blocks.brand_information.settings.header__1.content"

        },

        {

          "type": "checkbox",

          "id": "show_social",

          "default": true,

          "label": "t:sections.footer.blocks.brand_information.settings.show_social.label",

          "info": "t:sections.footer.blocks.brand_information.settings.show_social.info"

        }

      ]

    },

    {

      "type": "text",

      "name": "t:sections.footer.blocks.text.name",

      "settings": [

        {

          "type": "inline_richtext",

          "id": "heading",

          "default": "Heading",

          "label": "t:sections.footer.blocks.text.settings.heading.label"

        },

        {

          "type": "richtext",

          "id": "subtext",

          "default": "

Share contact information, store details, and brand content with your customers.

",

          "label": "t:sections.footer.blocks.text.settings.subtext.label"

        }

      ]

    },

    {

      "type": "image",

      "name": "Image",

      "settings": [

        {

          "type": "image_picker",

          "id": "image",

          "label": "Image"

        },

        {

          "type": "range",

          "id": "image_width",

          "min": 50,

          "max": 550,

          "step": 5,

          "unit": "px",

          "label": "Image width",

          "default": 100

        },

        {

          "type": "select",

          "id": "alignment",

          "label": "Image alignment on large screen",

          "options": [

            {

              "value": "",

              "label": "Left"

            },

            {

              "value": "center",

              "label": "Center"

            },

            {

              "value": "right",

              "label": "Right"

            }

          ],

          "default": "center"

        }

      ]

    }

  ],

  "settings": [

    {

      "type": "select",

      "id": "color_scheme",

      "options": [

        {

          "value": "accent-1",

          "label": "t:sections.all.colors.accent_1.label"

        },

        {

          "value": "accent-2",

          "label": "t:sections.all.colors.accent_2.label"

        },

        {

          "value": "background-1",

          "label": "t:sections.all.colors.background_1.label"

        },

        {

          "value": "background-2",

          "label": "t:sections.all.colors.background_2.label"

        },

        {

          "value": "inverse",

          "label": "t:sections.all.colors.inverse.label"

        }

      ],

      "default": "background-1",

      "label": "t:sections.all.colors.label"

    },

    {

      "type": "header",

      "content": "t:sections.footer.settings.header__1.content",

      "info": "t:sections.footer.settings.header__1.info"

    },

    {

      "type": "checkbox",

      "id": "newsletter_enable",

      "default": true,

      "label": "t:sections.footer.settings.newsletter_enable.label"

    },

    {

      "type": "inline_richtext",

      "id": "newsletter_heading",

      "default": "Subscribe to our emails",

      "label": "t:sections.footer.settings.newsletter_heading.label"

    },

    {

      "type": "header",

      "content": "t:sections.footer.settings.header__9.content",

      "info": "t:sections.footer.settings.header__9.info"

    },

    {

      "type": "checkbox",

      "id": "enable_follow_on_shop",

      "default": true,

      "label": "t:sections.footer.settings.enable_follow_on_shop.label"

    },

    {

      "type": "header",

      "content": "t:sections.footer.settings.header__2.content",

      "info": "t:sections.footer.settings.header__2.info"

    },

    {

      "type": "checkbox",

      "id": "show_social",

      "default": true,

      "label": "t:sections.footer.settings.show_social.label"

    },

    {

      "type": "header",

      "content": "t:sections.footer.settings.header__3.content",

      "info": "t:sections.footer.settings.header__4.info"

    },

    {

      "type": "checkbox",

      "id": "enable_country_selector",

      "default": true,

      "label": "t:sections.footer.settings.enable_country_selector.label"

    },

    {

      "type": "header",

      "content": "t:sections.footer.settings.header__5.content",

      "info": "t:sections.footer.settings.header__6.info"

    },

    {

      "type": "checkbox",

      "id": "enable_language_selector",

      "default": true,

      "label": "t:sections.footer.settings.enable_language_selector.label"

    },

    {

      "type": "header",

      "content": "t:sections.footer.settings.header__7.content"

    },

    {

      "type": "checkbox",

      "id": "payment_enable",

      "default": true,

      "label": "t:sections.footer.settings.payment_enable.label"

    },

    {

      "type": "header",

      "content": "t:sections.footer.settings.header__8.content",

      "info": "t:sections.footer.settings.header__8.info"

    },

    {

      "type": "checkbox",

      "id": "show_policy",

      "default": false,

      "label": "t:sections.footer.settings.show_policy.label"

    },
    {
      "type": "link_list",
      "id": "policy_menu",
      "default": "footer",
      "label": "Policy menu"
    },
    {

      "type": "header",

      "content": "t:sections.all.spacing"

    },

    {

      "type": "range",

      "id": "margin_top",

      "min": 0,

      "max": 100,

      "step": 4,

      "unit": "px",

      "label": "t:sections.footer.settings.margin_top.label",

      "default": 0

    },

    {

      "type": "header",

      "content": "t:sections.all.padding.section_padding_heading"

    },

    {

      "type": "range",

      "id": "padding_top",

      "min": 0,

      "max": 100,

      "step": 4,

      "unit": "px",

      "label": "t:sections.all.padding.padding_top",

      "default": 36

    },

    {

      "type": "range",

      "id": "padding_bottom",

      "min": 0,

      "max": 100,

      "step": 4,

      "unit": "px",

      "label": "t:sections.all.padding.padding_bottom",

      "default": 36

    }

  ],

  "default": {

    "blocks": [

      {

        "type": "link_list"

      },

      {

        "type": "text"

      }

    ]

  }

}

{% endschema %}
1 Like

Legend mate, thanks so much! Any larger jobs in the future i’ll be sure to reach out :slightly_smiling_face:

1 Like

Hi @jackthomasp ,

Thanks and happy to support you :blush: