Old Store Name Still Showing In Products

Topic summary

A user changed their Shopify store name from “Racefiets013” to “Racefiets013” (correcting a typo in the last two letters) via Settings > General > Store details. However, the old store name continues to appear in product descriptions on individual product pages despite the update.

Proposed Solution:
Another user suggested hiding the problematic text element using CSS:

  • Navigate to Edit code in the theme editor
  • Locate the base.css file
  • Add CSS code at the end to hide the element displaying the old store name (p.product__text.inline-richtext { display: none !important; })

Status: The issue appears unresolved from the original poster’s perspective. The CSS workaround only hides the text rather than updating it to reflect the new store name, which may not be the ideal long-term solution.

Summarized with AI on October 31. AI used: claude-sonnet-4-5-20250929.

Hi,

I have updated my shopify store name (by going to Settings - General - Store details), however all of my products listed still have an old store name in the description once you click on them. What can I do to change that? I am using the Origin theme.

Thank you.

Hi, Can you share store URL and detail image?

Hi,

https://racefiets013.com/products/giant-tcr-advanced-pro-1-axs-carbon-racefiets

An old store name was Racefiest013, I’ve changed it to Racefiets013 (difference in the last two letters). However, the store name remained unchanged in product description, as you can see from the print screen below:

Thank you

Hi @Joao27

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

p.product__text.inline-richtext {
    display: none !important;
}

Result

Best,

Liz