How to remove shop name from showing in Google results page title?

Topic summary

A user is trying to remove their shop name from appearing in Google search result titles after editing the theme.liquid file in Shopify. Despite removing the code that appends the shop name to page titles, Google continues to display it in search results even after re-indexing.

Attempted solutions include:

  • Modifying the <title> tag in theme.liquid to exclude {{ shop.name }}
  • Clearing Shopify cache
  • Submitting updated sitemap to Google Search Console
  • Using URL Inspection Tool to request re-indexing
  • Checking Online Store > Preferences > Homepage Title settings

Current status: The issue persists despite following recommended troubleshooting steps and waiting for Google to re-index. The shop name continues to appear appended to collection titles in search results.

Key consideration: One response notes that Google can take days to weeks to reflect changes, suggesting patience may be required. The user has shared their current code snippet and is seeking additional suggestions to resolve the problem.

Summarized with AI on November 7. AI used: claude-sonnet-4-5-20250929.

Hi guys!

I have tried to remove the store name from the SEO Page title showing on google by removing a line in theme.liquid.

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

but still, after re-indexing the page google still shows it with the store name in the search results.

What do I need to do so this changes are applied?

Thanks!

After removing it, google will take time to reindex changing of your store before displaying new description on search result.

Hello There,

You change from Online Store > Preferences > Homepage Title.

Thank You

Hey @miltokas ,

To ensure that your changes to the SEO Page title are correctly applied and reflected in Google search results, follow these steps:

1. Clear Shopify Cache: After making changes to the theme files, ensure that the cache is cleared. You can do this by making a minor change to the theme and saving it again. This will force Shopify to refresh the cache.

2. Verify Theme Changes:
Make sure your <title> tag is correctly updated. Based on your code, it should look like this:


This code snippet should be placed in your theme.liquid file within the <head> section.

3. Check for Other Theme Files:
Ensure that there are no other theme files or sections overriding the <title> tag. Sometimes, individual templates (like product.liquid, collection.liquid, etc.) may have their own <title> tags.

4. Update Robots.txt :
If you have a custom robots.txt file, make sure it allows search engines to index your site.

5. Submit the Updated Sitemap to Google:
After making these changes, you should resubmit your sitemap to Google Search Console to prompt re-indexing. Here’s how:

6. Use URL Inspection Tool
In Google Search Console, use the URL Inspection tool to request indexing of specific pages you’ve updated. This can help speed up the process of reflecting changes in search results.

7. Wait for Re-indexing:
Changes in search results are not immediate and can take some time. Google needs to crawl and re-index your pages, which can take a few days to weeks.

By following these steps, you should ensure that your changes are recognized and reflected in Google search results over time.

Hi @azamgill !

I have followed all your instructions (thanks a lot) requested and waited for the indexation and all but still no luck, the name is always appended in the collection titles.

My code is as following, I removed the recommended section that was appending the store name.

Any more suggestions in order to get it removed?


       
    
    {% if page_description %}
      {%- comment smartseo_integration_begin_meta_data -%}{%- endcomment smartseo_integration_end_meta_data -%}
    {% endif %}
   
    {% render 'meta-tags' %}