Remove store name from Home page title

Topic summary

Issue: The homepage title set in Online Store > References is “The Number #1 Place For Snus in Vietnam | Deliver to all of Vietnam!”, but Google search shows “SnusLAB: The Number #1 Place For Snus in Vietnam | Deliver to all of Vietnam!”. The goal is to remove the “SnusLAB:” (store name) prefix for SEO.

Technical context: theme.liquid includes a that appends the shop name at the end unless page_title already contains it:

  • {{ page_title }} … {% unless page_title contains shop.name %} – {{ shop.name }}{% endunless %}
    Yet Google displays the store name at the beginning in search results.

Guidance provided: A responder explains the store name showing in Google is controlled by Google’s indexing and not immediate theme changes. Updates (URLs, SEO, logos) need reindexing, which can take time, especially for new stores. They recommend requesting a recrawl via Google’s “Request Google to Recrawl Your Website” documentation.

Latest update: The OP tried changes; only the non-“SnusLAB:” portion changed, and the prefix persists. They asked for a code review.

Status: Unresolved/ongoing. Action item: Request Google recrawl and wait for reindexing. Open question: how to reliably remove the store name prefix from Google’s result title.

Summarized with AI on December 29. AI used: gpt-5.

Hi everyone,

I am currently using the free “Refreshing” theme, and in Online Store > References, the homepage title part is “The Number #1 Place For Snus in Vietnam | Deliver to all of Vietnam!”. However, when searching up my store on Google, it kept showing “SnusLAB: The Number #1 Place For Snus in Vietnam | Deliver to all of Vietnam!”.

I would like to remove the “SnusLAB:” part at the beginning for better SEO purposes. From what I’ve read this can be solved in the theme code, could someone have a look please, I would really really appreciate it since it has been days trying figure this out.

In my theme.liquid, my code is:

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

How would I change it so it removes the “SnusLAB:” (store name) at the beginning? Greatly appreciate any help!

Hi @AlanNguyen1 !

Since the store name is only showing under Google search, even though you edit out your theme code, the store name will still appear in your Google SEO because the update is coming directly in Google and not in your store. Any updates in your Shopify store like URLs, SEOs, Logos, will need to be re-indexed by Google and for some new Shopify stores, it will take a while for the changes to appear in Google. For your reference and for more insights, you can check **Request Google to Recrawl Your Website **help document.

Hope this helps!

Thanks for the reply, but I tried to change it, but only the part that is not “SnusLAB:” got changed. It seems like the first part is fixed into the code. Please let me know if you can have a look at my code for me. Thank you in advance!