How to Remove My Shop Name from the Title Tag in Shopify

· Updated
15 Min. Lesezeit
How to Remove My Shop Name from the Title Tag in Shopify
Inhaltsverzeichnis

TL;DR

To remove your shop name from Shopify title tags, edit your theme code and delete the Liquid line that appends shop.name inside the title tag logic. This is usually found in layout/theme.liquid or a snippet like seo-title.liquid. It can make titles shorter and cleaner for SEO, but it may also reduce brand visibility, so test the impact in Google Search Console after making the change.

To remove your shop name from the title tag in Shopify, edit your theme code and delete the line that appends shop.name inside the <title> logic. In most themes, this is in layout/theme.liquid or a snippet such as snippets/seo-title.liquid.

I have had to make this exact change on plenty of Shopify stores over the years, both in my own test shops and when helping merchants using custom themes, vintage themes, and Online Store 2.0 themes. The good news is that this is usually a quick fix, but the exact code varies by theme, so it helps to know what you are looking for before you start deleting anything.

If your brand name is long, repetitive, or already included in your page titles, removing it can make your title tags cleaner and more focused. That can help with click-through rate, improve how titles display in Google, and stop awkward results like Product Name | Collection Name | Your Very Long Store Name.

Why would you remove your shop name from Shopify title tags?

You would remove your shop name from Shopify title tags when it makes your SEO titles too long, repetitive, or less compelling in search results. This is most useful when your page titles already contain your brand or when keyword relevance matters more than repeating the shop name.

Shopify themes often append the store name automatically. That is not always a bad thing. For some brands, especially well-known ones, keeping the name in the title can improve recognition. But for smaller stores or stores with long names, it often wastes valuable title space.

In my experience building Shopify apps and working with merchants on SEO-related theme tweaks, the biggest issue is not rankings directly. It is presentation. Google typically shows around 50 to 60 characters of a title in many desktop search results, so if your store name eats up 20 or 30 characters, your actual product or collection intent can get cut off.

You should also know that Google does not always use your exact title tag. It may rewrite titles based on page content, headings, links, and site name signals. Still, your theme title logic remains one of the main inputs, so it is worth optimising properly. You can read more about Shopify SEO basics in Shopify's own documentation at Shopify SEO guide.

Can you remove the shop name from title tags in Shopify settings?

No, you usually cannot remove the shop name from all title tags from Shopify settings alone. For most themes, this change requires editing Liquid code in your theme files.

This is where a lot of merchants get stuck. They go to Online Store - Preferences expecting a global SEO title format setting, but Shopify does not provide a universal toggle for removing the brand from every page title. You can edit the homepage title there, but not the title tag logic across the entire storefront.

That means if your theme adds shop.name to product, collection, page, and blog titles automatically, you need to change the theme itself. If you only want to change the homepage title, then Preferences may be enough. If you want to remove the shop name sitewide, code editing is the correct route.

How do I remove my shop name from the title tag in Shopify?

The standard method is to open your active theme, find the title tag logic, and remove the Liquid code that outputs shop.name. This works on most Shopify themes in 2026.

Before making any changes, duplicate your theme first. I always recommend this, even for tiny edits. A title tag change is low risk, but duplicating your live theme gives you a clean fallback if you accidentally remove the wrong bit of Liquid.

  1. In Shopify admin, go to Online Store - Themes.
  2. Find your live theme and click ... or Actions, then choose Duplicate.
  3. On the copied or live theme, click Edit code.
  4. Open layout/theme.liquid.
  5. If you do not see the relevant title logic there, search for seo-title or search the codebase for shop.name.
  6. Locate the <title> section or the captured SEO title block.
  7. Delete the line that appends the shop name.
  8. Save the file and test the result on the front end.

On many themes, the code looks something like this:

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

To remove the shop name, change it to this:

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

On newer themes, you may see a captured variable instead, like this:

{%- capture seo_title -%}
  {{ 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 -%}
  {%- assign escaped_page_title = page_title | escape -%}
  {%- unless escaped_page_title contains shop.name -%} - {{ shop.name }}{%- endunless -%}
{%- endcapture -%}
{{ seo_title | strip }}

In that case, remove this line:

{%- unless escaped_page_title contains shop.name -%} - {{ shop.name }}{%- endunless -%}

That single line is usually the whole problem. Once it is gone, Shopify will stop appending the shop name to titles generated by that theme logic.

Where is the title tag code located in Shopify themes?

The title tag code is usually in layout/theme.liquid, but some themes move it into snippets like seo-title.liquid or other head-related files. If you cannot find it in one place, search the codebase for shop.name or page_title.

This is one of the main reasons merchants get confused. A lot of forum answers say "edit theme.liquid", which is often correct, but not always. Some premium and custom themes split SEO logic into snippets to keep the layout file cleaner.

When I test themes, I usually search for three terms first: shop.name, page_title, and seo_title. That nearly always surfaces the right file within seconds. If your theme uses a custom translation string, you might also see something like {{ 'general.title.shop' | t: shop: shop.name }}, which serves the same purpose and should also be removed if you do not want the brand added.

Theme setup Most likely file What to search for
Vintage Shopify theme layout/theme.liquid shop.name, <title>
Online Store 2.0 theme layout/theme.liquid or SEO snippet seo_title, page_title
Premium or custom theme snippets/seo-title.liquid or head snippet shop.name, translation strings
Heavily customised theme Custom head snippet or layout include render, include, shop.name

If you are editing a heavily customised store, it is worth checking whether an SEO app or developer has modified the head output. Some stores have multiple title-related snippets, so make sure you edit the one actually rendered on the live theme.

What code should I remove from Shopify title tags?

You should remove the line that appends shop.name to the title tag, not the whole title tag block. Keep the rest of the logic intact so pagination and tag-based titles still work correctly.

This is important. I have seen merchants remove the entire title capture block because they thought it was all boilerplate. That can break pagination labels, collection tag context, and other useful SEO details.

In most themes, the line to remove looks like one of these:

{% unless page_title contains shop.name %} - {{ shop.name }}{% endunless %}
{%- unless escaped_page_title contains shop.name -%} - {{ shop.name }}{%- endunless -%}
{{ 'general.title.shop' | t: shop: shop.name }}

Only remove the bit that outputs the store name. Leave the rest unless you have a specific reason to change it.

If you are unsure, copy the original block into a text file before editing. That gives you a quick rollback option without relying on memory.

How do I remove the shop name from the homepage title only?

To remove the shop name from the homepage title only, wrap the shop name logic in a condition so it only appears on non-homepage templates. This is useful if you want branding on product pages but not on the home page.

This comes up more often than people think. Some merchants want the homepage title to be a tightly controlled phrase like Luxury Linen Bedding | Organic Cotton Sheets without the brand appended, while keeping the brand visible elsewhere.

You can use conditional logic like this:

{%- if template.name != 'index' -%}
  {%- unless escaped_page_title contains shop.name -%} - {{ shop.name }}{%- endunless -%}
{%- endif -%}

That tells Shopify to skip the brand on the homepage only. If your theme uses a simpler title tag, the same idea applies. You are just wrapping the shop.name output in an if condition.

For homepage-specific SEO edits, also check Online Store - Preferences. You can often improve the homepage title there without touching code. That will not remove the global title suffix, but it can help you control the final result.

Should you remove your shop name from every title tag?

No, not always. The best choice depends on your brand strength, title length, and SEO goals. Removing the shop name is helpful when it creates clutter, but keeping it can support brand recognition.

There is no universal SEO rule that says your brand must be removed. In fact, for established brands, keeping the shop name in titles can improve trust and click-through rate. If people already know your store, seeing the brand in search results can be an advantage.

That said, for many smaller Shopify stores, especially niche shops, keyword clarity usually matters more than repeating the store name. If your title currently reads like a sentence fragment because the brand pushes key terms off the end, I would usually remove it or at least limit it to certain templates.

Option Best for Pros Cons
Keep shop name everywhere Established brands Better recognition, consistent branding Longer titles, more truncation
Remove shop name everywhere Small stores, long brand names Cleaner titles, more room for keywords Less visible branding in SERPs
Remove on homepage only Stores with a carefully crafted homepage title More control where it matters most Needs conditional code
Keep on selected templates only Stores balancing SEO and branding Flexible, strategic approach More setup and testing

My practical advice is simple: test rather than guess. Watch impressions and click-through rate in Google Search Console after the change. If branded clicks drop or title rewrites increase, you may want to restore the brand on some pages.

How do I check if the change worked?

The quickest way to check is to open the page on your storefront, view the page source, and search for the <title> tag. You should see the page title without the appended shop name.

Do not rely solely on what the browser tab shows. Browser tabs sometimes truncate titles differently, and apps or scripts can affect what you think you are seeing. The page source is the more reliable check.

  1. Open a product, collection, page, or blog post on your storefront.
  2. Right click and choose View page source.
  3. Press Ctrl+F or Cmd+F and search for <title>.
  4. Confirm that your shop name is no longer being appended.

You can also inspect the live HTML using your browser developer tools, but page source is usually enough for this job. After that, request reindexing in Google Search Console if the affected pages are important.

Keep in mind that Google may take time to reflect the change. Even after you update the title tag in Shopify, search results might still show the old version for days or weeks until Google recrawls the page.

What if my Shopify theme uses different code?

If your theme uses different code, search for shop.name near the title logic and remove only the part that outputs the store name. The exact syntax may differ, but the principle is the same across themes.

This is where most forum threads end up. One merchant posts code from Dawn, another from Streamline, another from a custom enterprise build, and every answer looks slightly different. The common thread is still the same: find where shop.name is added to the title output.

Possible variations include:

  • A direct line inside <title>
  • A captured variable like seo_title
  • A snippet such as seo-title.liquid
  • A translation string that inserts the brand
  • Conditional logic for homepage, blog, or paginated pages

If you are struggling to locate it, use Shopify's code search and look for page_title, shop.name, and general.meta.page. Those usually appear close together. Shopify's theme architecture docs can also help if you are working with a more abstracted theme structure: Shopify theme architecture.

Can an app remove the shop name from Shopify title tags?

No app is usually necessary for this specific task because it is a theme code issue, not a feature gap. A small manual edit is normally the fastest and cleanest fix.

As a Shopify app developer, I am usually the first person to say when an app makes sense. In this case, it usually does not. Installing an SEO app just to remove the shop name from title tags is overkill unless you also need broader metadata management, schema, redirects, and bulk SEO tooling.

If you are already using an SEO app that controls title templates, check whether it overrides theme output. But for most stores, the native theme code is what matters. I would rather spend two minutes editing Liquid than add another app to a merchant's stack for a one-line change.

If you are making broader storefront edits, a few related LaunchTip guides may help too. For example, if you are tidying up storefront branding and template output, you might also want to remove Powered by Shopify, remove the vendor name from product pages, or add a HTML tag to the home page in Shopify.

What are the SEO pros and cons of removing the shop name?

The main SEO benefit is shorter, more focused title tags. The main downside is reduced brand visibility in search results. Whether that trade-off is worth it depends on your store.

Here is how I think about it when reviewing a Shopify store:

  • Pro: more room for primary keywords and product intent
  • Pro: less duplication if the brand is already in the page title
  • Pro: cleaner titles on long product and collection pages
  • Con: weaker branding signal in the visible title
  • Con: less trust for users who recognise your brand
  • Con: Google may rewrite the title anyway

Google's own documentation on title links is worth reading because it explains why search titles sometimes differ from your source code: Google title links documentation. That is another reason to think strategically rather than assuming a title tag edit guarantees a specific SERP display.

If your goal is purely to reduce clutter and avoid truncation, removing the shop name often makes sense. If your goal is brand building, I would consider keeping it on high-value templates like the homepage and key collections.

What should you do before editing Shopify theme code?

Before editing Shopify theme code, duplicate your theme, note the original code, and test on multiple page types after saving. That reduces the risk of accidental SEO or layout issues.

This is basic housekeeping, but it matters. Even tiny edits can cause confusion later if you forget what changed. I usually keep a quick note of the original title block and the date I changed it, especially on client stores.

  • Duplicate the theme first
  • Copy the original title code into a note
  • Test homepage, product, collection, page, and blog templates
  • Check page source, not just browser tabs
  • Monitor Google Search Console over the next few weeks

If you are editing blog SEO elements too, this related guide may help: changing the author name on your Shopify blog. And if you are cleaning up page structure more broadly, you may also find our guide on displaying product tags on Shopify useful.

When should you ask a Shopify developer for help?

You should ask a Shopify developer for help if your theme is heavily customised, you cannot find the title logic, or you are worried about breaking SEO output. For a standard theme, most merchants can handle this themselves.

In most cases, this is a straightforward edit. But if your store uses a bespoke theme, multiple SEO snippets, or app-driven head customisations, it can get messy quickly. I have seen stores where the title output was assembled across several snippets and translations, which is not ideal for a beginner to untangle.

If that sounds like your setup, get someone technical to review it. You can also search the Shopify Community for theme-specific examples, since many merchants have posted code snippets for themes like Supply, Streamline, and Enterprise. Just make sure any advice you follow matches your actual theme version.

Final thoughts on removing your shop name from Shopify title tags

Removing your shop name from Shopify title tags is usually a one-line Liquid edit, and it still works on most themes in 2026. The key is finding the exact code that appends shop.name and removing only that portion.

I like this change when a title is bloated, repetitive, or clearly being truncated. I am less keen on it when the brand is a genuine selling point. As with most Shopify SEO tweaks, the best answer is contextual, not universal.

If you want the quick version, open your theme code, search for shop.name near the title logic, remove the line that outputs it, save, and verify the result in page source. That is the fix most merchants are actually looking for, and it is the one that keeps showing up across forum threads because it works.

Diesen Artikel teilen

Ähnliche Artikel