Oh, that’s odd. Sorry. Apparently (.rtf) files aren’t supported. I’ll just paste them here.
theme.liquid
{%- capture dir -%}
{%- case request.locale.iso_code -%}
{%- when ‘ae’ or ‘ar’ or ‘arc’ or ‘bcc’ or ‘bqi’ or ‘ckb’ or ‘dv’ or ‘fa’ or ‘glk’ or ‘ha’ or ‘he’ or ‘kwh’ or ‘ks’ or ‘ku’ or ‘mzn’ or ‘nqo’ or ‘pnb’ or ‘ps’ or ‘sd’ or ‘ug’ or ‘ur’ or ‘yi’ -%}
rtl
{%- else -%}
ltr
{%- endcase -%}
{%- endcapture -%}
{% render ‘head-preload’ %}
{% if settings.favicon != blank -%}
{%- endif %}
{{ page_title }}{% if current_tags %}{% assign meta_tags = current_tags | join: ', ’ %} – {{ ‘general.meta.tags’ | t: tags: meta_tags }}{% endif %}{% if current_page != 1 %} – {{ ‘general.meta.page’ | t: page: current_page }}{% endif %}{% unless page_title contains shop.name %} – {{ shop.name }}{% endunless %}
{% if page_description %}
{% endif %}
{%- unless settings.heading_font.system? and settings.body_font.system? -%}
{%- endunless -%}
{% render ‘social-meta-tags’ %}
{{ ‘app.css’ | asset_url | stylesheet_tag }}
{% render ‘head-variables’ %}
{{ content_for_header }}
{{ ‘accessibility.skip_to_text’ | t }}
{% sections ‘header-group’ %}
{% sections ‘footer-group’ %}
{% render ‘cart-drawer’ %}
{% render ‘product-drawer’ %}
{% render ‘search-drawer’ %}
{{ ‘vendor.min.js’ | asset_url | script_tag }}
{% if settings.animations %}
{{ ‘animations.min.js’ | asset_url | script_tag }}
{% endif %}
{% if settings.enable_quick_view or settings.enable_quick_add %}
{{ ‘product.js’ | asset_url | script_tag }}
{% endif %}
{{ ‘slideshow.js’ | asset_url | script_tag }}
{{ ‘app.js’ | asset_url | script_tag }}
{%- if request.design_mode -%}
{{ ‘theme-editor.js’ | asset_url | script_tag }}
{%- endif -%}
{%- if settings.cart_recommendations -%}
{%- endif -%}
{% render ‘back-to-top’ %}
h1.collection-banner--title {
display: none !important;
}
footer.liquid
{% liquid
assign full_width = section.settings.full_width
assign copyright_text = section.settings.copyright_text
assign show_language_switcher = section.settings.show_language_switcher
assign show_currency_switcher = section.settings.show_currency_switcher
assign show_payment_icons = section.settings.show_payment_icons
%}
{{ ‘footer.css’ | asset_url | stylesheet_tag }}
{%- for block in section.blocks -%}
{% if block.type == ‘text’ %}
{%- liquid
assign column_class = ‘small-12 medium-4 large-2’
case block.settings.column_size
when ‘medium’
assign column_class = ‘small-12 medium-3’
when ‘large’
assign column_class = ‘small-12 medium-6’
endcase
-%}
{%- if block.settings.title != blank -%}
{{ block.settings.title }}
{%- endif -%}
{%- if block.settings.image != blank -%}
{% assign image = block.settings.image %}
{% assign master_width = image.src.width | append: ‘x’ | append: image.src.height %}
{%- render ‘responsive-image’, image: image, sizes: master_width, retina: 1, priority: ‘low’ -%}
{%- endif -%}
{%- if block.settings.text != blank -%}
{{ block.settings.text }}
{%- endif -%}
{%- if block.settings.button_text != blank -%}
{{ block.settings.button_text }}
{%- endif -%}
{%- if block.settings.show_social_links -%}
{%- render ‘social-links’ -%}
{%- endif -%}
{% endif %}
{%- if block.type == ‘menu’ -%}
{%- liquid
assign column_class = ‘small-12 medium-4 large-2’
case block.settings.column_size
when ‘medium’
assign column_class = ‘small-12 medium-3’
when ‘large’
assign column_class = ‘small-12 medium-6’
endcase
-%}
{{ block.settings.title }}
{%- if block.settings.menu != blank -%}
{% for link in block.settings.menu.links %}
{% assign has_sub_menu = false %}
{% if link.links.size > 0 %}
{% assign has_sub_menu = true %}
{% endif %}
-
<a href=“{{ link.url }}” title=“{{ link.title | escape }}”{%- if link.active %} aria-current=“page”{% endif -%}>{{ link.title }}{% if has_sub_menu %}{%- render ‘svg-icons’ with ‘thb-dropdown-bottom’ -%}{% endif %}
{% if has_sub_menu %}
{% for l in link.links %}
{% assign has_sub_menu = false %}
{% if l.links.size > 0 %}
{% assign has_sub_menu = true %}
{% endif %}
-
{{ l.title }}{% if has_sub_menu %}{%- render ‘svg-icons’ with ‘thb-dropdown-bottom’ -%}{% endif %}
{% if has_sub_menu %}
{% for sub_link in l.links %}
{% assign has_sub_menu = false %}
{% if sub_link.links.size > 0 %}
{% assign has_sub_menu = true %}
{% endif %}
-
{{ sub_link.title }}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{%- endif -%}
{%- endif -%}
{%- if block.type == ‘signup’ -%}
{%- liquid
assign column_class = ‘small-12 medium-4 large-2’
case block.settings.column_size
when ‘medium’
assign column_class = ‘small-12 medium-3’
when ‘large’
assign column_class = ‘small-12 medium-6’
endcase
-%}
{% if block.settings.title != blank %}
{{ block.settings.title }}
{% endif %}
{% if block.settings.text != blank %}
{{ block.settings.text }}
{% endif %}
{% render ‘email-signup-form’ %}
{%- endif -%}
{%- if block.type == ‘social’ -%}
{%- liquid
assign column_class = ‘small-6 medium-4 large-2’
case block.settings.column_size
when ‘medium’
assign column_class = ‘small-12 medium-3’
when ‘large’
assign column_class = ‘small-12 medium-6’
endcase
-%}
{% if block.settings.title != blank %}
{{ block.settings.title }}
{% endif %}
{% render ‘social-links’ %}
{%- endif -%}
{%- if block.type == ‘custom_liquid’ -%}
{%- liquid
assign column_class = ‘small-6 medium-4 large-2’
case block.settings.column_size
when ‘medium’
assign column_class = ‘small-12 medium-3’
when ‘large’
assign column_class = ‘small-12 medium-6’
endcase
-%}
{% if block.settings.title != blank %}
{{ block.settings.title }}
{% endif %}
{{ block.settings.custom_liquid }}
{%- endif -%}
{%- endfor -%}
{% render ‘localization’, id: ‘FooterLocalization’, show_language_switcher: show_language_switcher, show_currency_switcher: show_currency_switcher %}
{%- if show_payment_icons -%}
{%- unless shop.enabled_payment_types == empty -%}
{%- for type in shop.enabled_payment_types -%}
{{ type | payment_type_svg_tag: class: 'payment-icons__icon' }}
{%- endfor -%}
{%- endunless -%}
{%- endif -%}
© {{ 'now' | date: "%Y" }} {{ shop.name }}, {{ copyright_text }} {{ powered_by_link }}
{%- if shop.features.follow_on_shop? and section.settings.enable_follow_on_shop -%}
{{ shop | login_button: action: ‘follow’ }}
{%- endif -%}
{% schema %}
{
“name”: “Footer”,
“class”: “section-footer”,
“settings”: [
{
“type”: “checkbox”,
“id”: “full_width”,
“default”: false,
“label”: “Make section full width”
},
{
“type”: “text”,
“id”: “copyright_text”,
“label”: “Additional copyright text”,
“default”: “All rights reserved.”
},
{
“type”: “checkbox”,
“id”: “show_language_switcher”,
“label”: “Enable language switcher”,
“default”: true,
“info”: “To add a language, go to your language settings.”
},
{
“type”: “checkbox”,
“id”: “show_currency_switcher”,
“label”: “Enable currency switcher”,
“default”: true,
“info”: “To add a country/region, go to your payment settings.”
},
{
“type”: “checkbox”,
“id”: “show_payment_icons”,
“label”: “Show payment icons”,
“default”: true,
“info”: “By default your theme shows the icons that are associated with the payment gateway you have enabled in the payment settings.”
},
{
“type”: “header”,
“content”: “Follow on Shop”,
“info”: “To allow customers to follow your store on the Shop app from your storefront, Shop Pay must be enabled. Learn more”
},
{
“type”: “checkbox”,
“id”: “enable_follow_on_shop”,
“default”: true,
“label”: “Enable Follow on Shop”
}
],
“blocks”: [
{
“type”: [email removed]
},
{
“type”: “text”,
“name”: “Text”,
“settings”: [
{
“type”: “select”,
“id”: “column_size”,
“label”: “Column size”,
“options”: [
{ “value”: “small”, “label”: “Small” },
{ “value”: “medium”, “label”: “Medium” },
{ “value”: “large”, “label”: “Large” }
],
“default”: “small”
},
{
“id”: “title”,
“type”: “text”,
“label”: “Title”
},
{
“type”: “image_picker”,
“id”: “image”,
“label”: “Image”,
“info”: “240 x 100 px .png recommended.”
},
{
“type”: “richtext”,
“id”: “text”,
“label”: “Text”,
“default”: “
Add company info here.
”
},
{
“type”: “select”,
“id”: “text_size”,
“label”: “Text size”,
“options”: [
{
“value”: “small”,
“label”: “Small”
},
{
“value”: “medium”,
“label”: “Medium”
},
{
“value”: “large”,
“label”: “Large”
}
],
“default”: “medium”
},
{
“id”: “button_text”,
“type”: “text”,
“label”: “Button label”,
“default”: “Explore”,
“info”: “Leave the label blank to hide the button.”
},
{
“id”: “button_link”,
“type”: “url”,
“label”: “Button link”
},
{
“type”: “checkbox”,
“id”: “show_social_links”,
“label”: “Show social links”,
“default”: true
}
]
},
{
“type”: “menu”,
“name”: “Menu”,
“settings”: [
{
“type”: “select”,
“id”: “column_size”,
“label”: “Column size”,
“options”: [
{ “value”: “small”, “label”: “Small” },
{ “value”: “medium”, “label”: “Medium” },
{ “value”: “large”, “label”: “Large” }
],
“default”: “small”
},
{
“id”: “title”,
“type”: “text”,
“label”: “Title”
},
{
“type”: “link_list”,
“id”: “menu”,
“default”: “footer”,
“label”: “Menu”,
“info”: “Select navigation to display”
}
]
},
{
“type”: “social”,
“name”: “Social links”,
“settings”: [
{
“type”: “select”,
“id”: “column_size”,
“label”: “Column size”,
“options”: [
{ “value”: “small”, “label”: “Small” },
{ “value”: “medium”, “label”: “Medium” },
{ “value”: “large”, “label”: “Large” }
],
“default”: “small”
},
{
“id”: “title”,
“type”: “text”,
“label”: “Title”
}
]
},
{
“type”: “signup”,
“name”: “Email signup”,
“limit”: 1,
“settings”: [
{
“type”: “select”,
“id”: “column_size”,
“label”: “Column size”,
“options”: [
{ “value”: “small”, “label”: “Small” },
{ “value”: “medium”, “label”: “Medium” },
{ “value”: “large”, “label”: “Large” }
],
“default”: “small”
},
{
“id”: “title”,
“type”: “text”,
“label”: “Title”
},
{
“type”: “richtext”,
“id”: “text”,
“label”: “Text”,
“default”: “
Add a text to attract more customers to sign up!
”
}
]
},
{
“type”: “custom_liquid”,
“name”: “Custom liquid”,
“settings”: [
{
“type”: “select”,
“id”: “column_size”,
“label”: “Column size”,
“options”: [
{ “value”: “small”, “label”: “Small” },
{ “value”: “medium”, “label”: “Medium” },
{ “value”: “large”, “label”: “Large” }
],
“default”: “small”
},
{
“id”: “title”,
“type”: “text”,
“label”: “Title”
},
{
“type”: “liquid”,
“id”: “custom_liquid”,
“label”: “Custom liquid”,
“info”: “Add app snippets or other Liquid code to create advanced customizations.”
}
]
}
]
}
{% endschema %}