How do I remove shop name in blog titles on Google search results?

Hello, my shop name is showing up in the blog post title in Google Search results. How do I remove the shop name?

Thank you!

Hi @Mli01 ,

You can follow the below steps to remove the shop name from your meta titles. It requires code editing so you may duplicate your theme before changing it to be on the safe side.

  1. From your Shopify Admin, navigate to online store > themes > actions > edit code
  2. In your theme.liquid file, find the____ tag (press CTRL + F or command + F on Mac to search)
  3. Replace the entire line of the 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>
  1. Hit save

I hope it helps.