How to remove store name from the page meta title?

Edited

The store name is added at the end of page titles for SEO purposes and make the brand easier to recognize.

If you'd like to remove the store name, this can be done by adjusting the theme code. Open the theme code page by going to /admin/themes, clicking the ellipsis (...) on your theme, and selecting Edit code.

For Impulse, Motion and Streamline, you'll be looking for the seo-title.liquid file in your snippets folder. Delete the following code in the file:

  {%- else -%}
    {%- unless page_title contains shop.name -%}
      – {{ shop.name }}
    {%- endunless -%}

For Expanse, Gem and Fetch, look for page-title.liquid in your snippets folder and remove the following code:

    else
      unless page_title contains shop.name
        echo shop.name | prepend: ' – '
      endunless

Make sure to save your changes when you're done.

Was this article helpful?

Sorry about that! Care to tell us more?

Thanks for the feedback!

There was an issue submitting your feedback
Please check your connection and try again.