@KieranR
I really don’t know much about website coding, app config, docs or dry running an install.
I have copied the code from theme.liquid and can see that in the section it refers to the SEO Now app. I have copied the code for theme.liquid and the seo.liquid below.
If this doesn’t shed some light on whether the app is the cause then I’ll have to wait to get someone to look into the coding properly.
I can see there is still some leftover code from apps that I have removed from the website so it needs a cleanup anyway, just not something I can address at the moment.
This is the code from theme.liquid section:
{% include ‘seonow’ %}
{% if settings.favicon %}
{% 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 %}
{% include 'eggflow-script' %}
{% if page_description %}
{% endif %}
{% include ‘social-meta-tags’ %}
{{ ‘theme.scss.css’ | asset_url | stylesheet_tag }}
{{ content_for_header }}
{{ ‘jquery-1.11.0.min.js’ | asset_url | script_tag }}
{{ ‘modernizr.min.js’ | asset_url | script_tag }}
{% if request.page_type contains ‘customers/’ %}
{{ ‘shopify_common.js’ | shopify_asset_url | script_tag }}
{% endif %}
{% include ‘booster-common’ %}
{% include ‘previewer-head-template’ %}
{{ ‘ndnapps-contactform-styles.css’ | asset_url | stylesheet_tag }}
{{ ‘ndnapps-easyfaqs.css’ | asset_url | stylesheet_tag }}
The section in bold italics in the code above - does this mean that it will use the rules created by the seo.liquid file? I have pasted this below…
code from seo.liquid (that relates to the title and meta tags):
{{ page_title | escape_once }}
{% if template contains “index” or template contains “product” %}
{%- if ldjson.enableStructuredData -%}
…Does this account for the second title tag and meta tags?
I will get someone to go through and clean up the code for the website soon hopefully but I was just hoping to try and fix this myself if possible first.
I understand coding is beyond me and more than likely I’ll need someone to do this but I appreciate the time you have taken to explain this.