Remove shop name from your Shopify store’s title
Most Shopify themes automatically adds your store's name to every single page at the end of the title for SEO.
However, depending on your SEO strategy, this can be an unwanted feature. Fortunately it's very simple to get that fixed.
Editing the title in your theme's code
- In your Shopify Admin go to online store > themes > actions > edit code
- In your theme.liquid file, find the<title> tag (press CTRL + F or command + F on Mac to search)
- Replace the entire line of the <title> tag with the following code:
<title>{% if template contains "index" %}{{ page_title }}{% else %}{{ page_title }}{% if current_tags %} {{ 'general.meta.tagged_html' | t: tags: meta_tags }}{% endif %}{% if current_page != 1 %} {{ 'general.meta.page' | t: page_number: current_page }}{% endif %}{% endif %}</title>
Every single page now won't have your shop's name at the end of the title.
Before:
After:
Was this article helpful?