How do I get rid of “– My Store” at the end of my business name when searching on google. Example below.
tim_1
October 9, 2025, 3:35am
2
Check your theme for the code like this:
{%- endif -%}
{%- unless settings.type_header_font.system? and settings.type_body_font.system? -%}
<link rel="preconnect" href="https://fonts.shopifycdn.com" crossorigin>
{%- endunless -%}
<title>
{{ page_title }}
{%- if current_tags %} – tagged "{{ current_tags | join: ', ' }}"{% endif -%}
{%- if current_page != 1 %} – Page {{ current_page }}{% endif -%}
{%- unless page_title contains shop.name %} – {{ shop.name }}{% endunless -%}
</title>
{% if page_description %}
<meta name="description" content="{{ page_description | escape }}">
{% endif %}
{% render 'meta-tags' %}
<script src="{{ 'constants.js' | asset_url }}" defer="defer"></script>
<script src="{{ 'pubsub.js' | asset_url }}" defer="defer"></script>
The highlighted line adds “-- yourshopname” at the end of the page <title>
And your shop name is “myStore” until you change it.
Simply removing this line will fix your problem (eventually, as Google is pretty slow with rescanning)
This can be changed by checking content of Meta Title on your store backend from Preference page. If you fail to find it out, you can also make a search with <title in theme.liquid this file and remove ‘My Store’ related code.