H1 header tag problem (H1 Bijoux de luxeBijoux de luxe)

Topic summary

A Shopify store owner using the Avone theme is encountering two SEO issues identified by an audit tool:

H1 Tag Duplication:

  • The H1 header displays “Bijoux de luxeBijoux de luxe” with the site name appearing twice instead of once.

Title Tag Length:

  • The page title is 82 characters (“Luxury Fashion and Jewelery - Shop the Men and Women’s Collection – Bijoux de luxe”), exceeding the recommended 50-60 character limit.
  • The store name “Bijoux de luxe” is automatically appended to the title.

Technical Context:

  • The user located code in snippets/header.liquid (no standalone header.liquid file exists).
  • The provided code snippet appears corrupted or reversed, making it difficult to identify the exact fix location.
  • The user posted a follow-up acknowledging their lack of technical expertise in making these modifications.

Status: The issue remains unresolved with no solutions provided yet. The user is seeking guidance on which specific code sections to modify.

Summarized with AI on November 6. AI used: claude-sonnet-4-5-20250929.

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 -%}

{{ settings.centerTxt }}

{%- 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 -%}

{{ settings.logo_cl.alt | default: shop.name }}

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

{{settings.logosvg | replace: ‘<svg’, ‘<svg class=“stlogo”’ }}

{%- else settings.logo != blank -%}

{{ settings.logo.alt | default: shop.name }}

{%- endif -%}

{%- elsif settings.logosvg != blank -%}

{{settings.logosvg }}

{%- elsif settings.logo != blank -%}

{{ settings.logo.alt | default: shop.name }}

{%- 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.enable_search %}

{% endif %}

{%- if settings.align_logo == “left” -%}{{logo}}{%- endif -%}

{%- if settings.nav_below_logo -%}

{{textblock}}

{%- 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 -%}

</div

{%- if settings.snow_effect -%}

{%- endif -%}

{{mobilenav}}

{%- endcapture -%}

{{siteHeader | strip_newlines | remove: " " | remove: " " }}

I’m not sure exactly where to make these changes in the code I’m not that experienced in these matters unfortunately