I got this information from using seo optimiser page audit
H1 Header Tag Usage
Your page has a H1 Tag.
Tag Value
H1 Bijoux de luxeBijoux de luxe
Notice how this above is duplicated it should not be like this
Also this below
Title Tag
You have a title tag, but ideally it should be shortened to between 50 and 60 characters (including spaces).
Luxury Fashion and Jewelery - Shop the Men and Women’s Collection – Bijoux de luxe
Length : 82
It seems to add my website name Bijoux de luxe to the end of the description
So how do i fix this issue ?
I have found this code in my shopify it is snippets/header.liquid as i dont have header.liquid im using the avone theme but not sure what needs to be changed in this code so if someone can help that would be great
{%- capture navigation -%}{% section ‘navigation’ %}{%- endcapture -%}
{%- if navigation contains ‘’ -%}{% assign endiv = ‘’ %}{%- endif -%}
{%- assign desktopnav = navigation | split: ‘’ | first | append: endiv -%}
{%- assign mobilenav = navigation | split: ‘’ | last | split: ‘’ | first -%}
{%- capture siteHeader -%}
{% if settings.snow_effect %}<div class=“snow-wrap falling-snow{% if settings.snow_style == “style2” %} style2{% else %} style1{% endif %}”>{% endif %}
{%- comment -%}*** Top Announcement ***{%- endcomment -%}
{%- if settings.announcement -%}
{%- if settings.announcement_link != blank -%}
{{ settings.announcement_txt }}
{%- else -%}
{{ settings.announcement_txt }}
{%- endif -%}
{%- endif -%}
{% comment %}*** Top Bar ***{% endcomment %}
{% assign topheaderMb = ‘’ %}
{%- if settings.leftTxt-mobile and settings.centerTxt-mobile and settings.rightTxt-mobile -%}
{% assign topheaderMb = ‘hide-sm hide-md’ %}
{%- endif -%}
{%- if settings.topbar -%}
{%- if settings.leftTxt != blank -%}
{%- if settings.leftTxt contains “[social-icons]”-%}
{%- assign topLeftTxt = settings.leftTxt | split: “[social-icons]” -%}
{{topLeftTxt[0]}} {% render ‘social-media’ %} {{topLeftTxt[1]}}
{%- else -%}
{{ settings.leftTxt }}
{%- endif -%}
{%- endif -%}
{%- if settings.centerTxt != blank -%}
{%- endif -%}
{%- if settings.rightTxt != blank -%}
{%- if settings.rightTxt contains “[social-icons]”-%}
{% assign topRightTxt = settings.rightTxt | split: “[social-icons]” %}
{{topRightTxt[0]}} {% render ‘social-media’ %} {{topRightTxt[1]}}
{%- else -%}
{{settings.rightTxt}}
{%- endif -%}
{%- endif -%}
{%- endif -%}
{% comment %}*** Main Header ***{% endcomment %}
{%- capture logo -%}
{%- capture logoWidth -%}{{ settings.logo_width | escape }}x{%- endcapture -%}
<{% if template == ‘index’%}h1 {% else %}div {% endif %}class=“header-logo”>
{%- if settings.home_classic and template == ‘index’ and settings.logo_cl != blank -%}
{%- if settings.logosvg != blank -%}
{{settings.logosvg | replace: ‘<svg’, ‘<svg class=“stlogo”’ }}
{%- else settings.logo != blank -%}
{%- endif -%}
{%- elsif settings.logosvg != blank -%}
{{settings.logosvg }}
{%- elsif settings.logo != blank -%}
{%- else -%}
{{ shop.name }}
{%- endif -%}
{{ shop.name }}
</{% if template == ‘index’%}h1{% else %}div{% endif %}>
{%- endcapture -%}
{%- capture textblock -%}
{%- if settings.hdTxt-block contains “[social-icons]”-%}
{%- assign headerTxt = settings.hdTxt-block | split: “[social-icons]” -%}
{{headerTxt[0]}} {% render ‘social-media’ %} {{headerTxt[1]}}
{%- else -%}
{{ settings.hdTxt-block }}
{%- endif -%}
{%- endcapture -%}
{%- if settings.align_logo == “left” -%}{{logo}}{%- endif -%}
{%- if settings.nav_below_logo -%}
{%- else -%}
{{desktopnav}}
{%- endif -%}
{% if settings.align_logo == “center” %}{{logo}}{% endif %}
{% if settings.enable_search %}
{% endif %}
{% unless settings.hide_login %}
{% if shop.customer_accounts_enabled or settings.show_multiple_currencies or settings.show_language %}
{% endif %}
{% render ‘customer-links’ %}
{% endunless %}
{% if settings.enable_wishlist %}0{% endif %}
{%- unless settings.catalogmode -%}
{{ cart.item_count }}
{%- endunless -%}
{%- if settings.nav_below_logo -%}{{desktopnav}}{%- endif -%}
{%- if settings.snow_effect -%}
{{mobilenav}}
{%- endcapture -%}
{{siteHeader | strip_newlines | remove: " " | remove: " " }}