How to remove shop name from all titles Sheena theme

Hello! I want to remove shop name from all SEO Titles. I found that i need to edit liquid theme files, but I dont know how to manage it. here is my code:

Need some help here. thank you.

{%- render 'layouthub_header' -%} {% if settings.favicon_enable %} {% 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 %} {% include 'social-meta-tags' %} {% include 'frame_header_styles' %} {% include 'frame_header_fonts' %} {% include 'frame_header_scripts' %} {%- if tinyscript -%}{{ content_for_header }}{%- else -%}{% render 'tiny-script-control' %}{%- endif -%} {% include 'frame_headers' %} {% include 'breadcrumb' %}

{% unless template contains β€œindex” or template contains β€œabout” %}

{% endunless %}
{% unless template contains 'index' or template contains 'about' %}
{% endunless %} {{ content_for_layout }} {% unless template contains 'index' or template contains 'about' %}
{% endunless %}
{% unless template contains "index" %}
{% endunless %} {% include 'frame_footers' %} {% include 'frame_footer_scripts' %} {% include 'qmodal' %} {% include 'modal-box' %} {% include 'currencies' %} {% include 'newsletter' %} {% include 'modal-compare' %} {% unless template contains 'product' %} {% section 'someone-purchased' %} {% endunless %} {% section 'GDPR-modal' %} {%- render 'layouthub_footer' -%} {{'tiny-img-link-preloader.js' | asset_url | script_tag }}

Hi @Aleyana ,

You just need to delete this, it will work fine: https://i.imgur.com/q2rNJFF.png

Code: {% unless page_title contains shop.name %} – {{ shop.name }}{% endunless %}

Hope it helps!

1 Like