How to remove store name from my products on google SERP

How to remove store name from my products on google SERP

samf2
Tourist
10 0 1

samf2_0-1711208893644.png

hi i want to remove the "- Soleheaven" part of my product and collection titles in google search so in this example its just "Pink Nike Dunks" im using dawn theme this is my store https://soleheaven.co.uk/collections/pink-nike-dunks

Replies 4 (4)

OneMobile
Shopify Partner
169 16 35

Hi @samf2 

 

Have you tried editing your product's search display?

  • Navigate to Products > All Products
  • Click the product you want to edit
  • In the Search engine listing preview section, click Edit website SEO
If you find my answer helpful, please hit the Like button or Mark as solution to show me some encouragement.
OneMobile: The #1 Mobile App Builder For Shopify Merchants
Pick ready-made themes & customize with drag-n-drop editor.

ilanadavis
Shopify Partner
228 29 77

Hey @samf2 

 

You have to edit your theme code to remove the name from your title. As with all things Google, this is only a recommendation and Google may choose to show a different title than what you've provided.

 

When editing the theme code, select the theme.liquid file and look for the <title> tag. Always be careful when editing your theme code if you're not a developer. Make sure you back up your theme before editing.

Before:

    <title>
      {{ page_title }}
      {%- if current_tags %} &ndash; tagged "{{ current_tags | join: ', ' }}"{% endif -%}
      {%- if current_page != 1 %} &ndash; Page {{ current_page }}{% endif -%}
      {%- unless page_title contains shop.name %} &ndash; {{ shop.name }}{% endunless -%}
    </title>

Remove the second to last line.

After:

    <title>
      {{ page_title }}
      {%- if current_tags %} &ndash; tagged "{{ current_tags | join: ', ' }}"{% endif -%}
      {%- if current_page != 1 %} &ndash; Page {{ current_page }}{% endif -%}
    </title>

 It may take time for Google to update the results.

Ilana Davis, Shopify Superhero
JSON-LD for SEO, adds structured data to your theme, getting you more organic traffic with Rich Results.
svalkyrie23
Explorer
78 2 4

This works - I would mark as solution but it's not available.  Thanks again Illana, funny how I just searched for this issue and you were able to solve for me again 😄

ilanadavis
Shopify Partner
228 29 77

Glad it helped you too 🤣

Ilana Davis, Shopify Superhero
JSON-LD for SEO, adds structured data to your theme, getting you more organic traffic with Rich Results.