On all of our product pages we have the following left on our page. I cannot locate the code any where. This was a Shopify Review App that was mass removed from Shopify accounts last year. Sadly, they left some code behind. How can I find and remove this information?
Product page example:
We love hearing from you.Based on 1 review
1 Like
To remove leftover code from a deleted Shopify review app, follow these steps:
-
Check Theme Files:
- Go to your Shopify admin panel.
- Navigate to Online Store > Themes.
- Click Actions > Edit code on your current theme.
- Look for any files related to reviews, such as product.liquid, product-template.liquid, or snippets (e.g., review.liquid).
- Search these files for any remnants of the app’s code and remove it.
-
Search for App Code:
- Use the theme editor’s search function to look for keywords related to the removed app.
- Common keywords might include the app’s name or functions like review, rating, or app.
-
Check for Unused Scripts:
- In Online Store > Themes, click Actions > Edit code.
- Open the Layout folder and check theme.liquid or any other layout files for scripts related to the old app.
-
Inspect Your Pages:
- Open your product pages and use the browser’s developer tools (right-click and select Inspect) to identify any leftover code or scripts related to the review app.
-
Clear Cached Data:
- Sometimes, code remnants can be cached. Clear your browser’s cache and check if the changes take effect.
If you’re still having trouble, you might consider reaching out to Shopify support or a Shopify expert for further assistance.
Hi @GreatMSTeaCo
Check this one if it work, if not then you need to contact the app provider.
From you Admin page, go to Online Store > Themes
Select the theme you want to edit
Under the Asset folder, open the main.css(base.css, style.css or theme.css)
Then place the code below at the very bottom of the file.
div#shopify-product-reviews {
display: none !important;
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!