Product Review App - uninstalled by Shopify

Topic summary

Shopify automatically uninstalled the Product Reviews App from a user’s store due to deprecation (reason code: Shopify_deprecation_productreviewsapp). After removal, the review section remained visible on product pages but was non-functional.

Solution provided:

  • Edit theme code to locate and delete shopify-product-reviews elements
  • Alternatively, add CSS code to hide the section:
#shopify-product-reviews {
  display: none;
}

Outcome: The CSS solution successfully removed the broken review section from the product pages. Issue resolved.

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

Hi,

My Product Reviews App was uninstalled, this is the reason,

By: Shopify

Reason: Shopify_deprecation_productreviewsapp

Description: Shopify_deprecation_productreviewsapp

However, on my product pages, the customer review section is still visible but does not work - see the red area in the image below. The question is - how do I delete this from my website now?

Hello @Monika_H ,

try to edit your theme code - find shopify-product-reviews and delete it or hide it. You can also insert this code in the Theme Editor → Custom CSS.

#shopify-product-reviews {
display: none;
}

Hope it helps.

1 Like

Hi Cristina - that worked a treat - thank you very much for the help! :slightly_smiling_face:

1 Like

Great!