Hi Tim,
Thanks for that. I’ve attached my theme.liquid code.
{%- liquid
assign themeLayout = settings.theme_layout | downcase
assign defaultDesc = ‘general.meta.description’ | t: shop_name: shop.name
assign pageDesc = page_description | default: defaultDesc
-%}
{%- capture body_class -%}
|page-layout-{{ settings.page_layout -}}
{%- if themeLayout == ‘rtl’ -%}|theme-rtl{%- endif -%}
{%- if settings.enable_left_column -%}|has-left-column {%- endif -%}
{%- if settings.cart_type == ‘catalog’ -%}|catalog-mode{%- endif -%}
{%- case request.page_type -%}
{%- when ‘product’ -%}|template-product-{{ template.suffix | default: settings.product_page | replace: ‘.’, ‘-’ | replace: ‘/’, ‘-’}}
{%- when ‘page’ -%}|page-{{template.suffix}}
{%- else -%}|template-{{ template | replace: ‘.’, ‘-’ | replace: ‘/’, ‘-’ -}}
{%- endcase -%}
{%- endcapture -%}
{%- assign body_class = body_class | remove_first: ‘|’ | strip | strip_newlines | split: ‘|’ | join: ’ ’ -%}
{%- if settings.favicon == blank -%}
{%- else -%}
{%- 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 %}
{%- render ‘fb-open-graph’ -%}
{%- render ‘style-resources’, type: ‘preload’ -%}
{%- render ‘theme-font’ -%}
{%- render ‘style-resources’, type: ‘’ -%}
{%- render ‘js-resources’ -%}
{{ content_for_header }}
{%- capture headerGroup -%}
{%- case settings.header_style -%}
{%- when '1' -%}
{%- sections 'group-header' -%}
{%- when '2' -%}
{%- sections 'group-header-2' -%}
{%- when '3' -%}
{%- sections 'group-header-3' -%}
{%- when '4' -%}
{%- sections 'group-header-4' -%}
{%- else -%}
{%- sections 'group-header-5' -%}
{%- endcase -%}
{%- endcapture -%}
{%- render ‘header-group’, group: headerGroup -%}
{%- render 'breadcrumb', pageLayout: settings.page_layout -%}
{%- capture mainContent -%}{{ content_for_layout }}{%- endcapture -%}
{%- render ‘layout’, content_for_layout: mainContent -%}
{%- sections 'group-footer' -%}
{%- render 'popup' -%}
{%- if request.design_mode and shop.permanent_domain != 'arena-chromium-02.myshopify.com' -%}{%- render 'verify' -%}{%- endif -%}
{{ #‘json-remove-locale-schema.min.js’ | asset_url | script_tag }}
I have also tried uploading the theme file again from scratch and it does it straight away so I am thinking it is something from the theme rather than what I have edited.