Skip to main contentSkip to Content
Skip to Content

Shopify fundamentals

Can Shopify display product reviews natively without a third-party app?

Many merchants setting up a new Shopify store ask whether product reviews are built in - a reasonable assumption given how central social proof is to e-commerce. The answer is nuanced and has changed significantly since 2023. This article explains exactly what Shopify provides natively, what it deprecated, what still needs an app, and what "natively stored" actually means for your data.

Audience: merchants evaluating Shopify, developers onboarding new stores. Reading time: ~7 minutes.

1. The short answer

Shopify does not ship a complete, ready-to-use review collection and display system out of the box in2026. What it does ship is the data infrastructure for reviews: a standardised Metaobject definition that any compliant app can write to, and that Liquid can render directly from.

For collection (email requests, submission forms, moderation, translation), you still need an app. But the data those reviews are stored in - the Metaobjects - lives inside Shopify itself, not on the app vendor's server.

This distinction matters more than it might appear. It means your reviews are not held hostage by any specific app's pricing or uptime. The app is a tool for managing data that belongs to your store.

2. Shopify's old Product Reviews app

Until 2023, Shopify maintained a first-party app called "Product Reviews" - a free, simple app that provided basic review collection via on-store forms and display via Liquid theme integration. It was minimal but functional: no email review requests, no moderation UI, no translation, but zero cost and no third-party dependency.

Shopify deprecated the Product Reviews app in May 2024 and removed it from active development. It remains technically installable for existing users but is no longer recommended and will eventually be retired.

The reason Shopify deprecated it was not that they abandoned reviews - it was that they replaced the ad-hoc app approach with a more architectural solution: the standard product review Metaobject definition.

If you are currently using the legacy Product Reviews app, your data is stored in a format that is not compatible with the standard Metaobject definition. Migrating to a compliant app involves exporting your existing reviews (via CSV) and re-importing them into the standard format.

3. What Shopify ships natively today

Shopify's native contribution to product reviews in 2026 is the standard product review Metaobject definition. This is a standardised schema - a formal specification for how review data should be structured - that is recognised platform-wide.

Specifically, Shopify defines and maintains:

  • The shopify--product-review Metaobject type, with standard fields for rating, body text, author, date, and product reference
  • The reviews.rating standard Metafield on products - a computed aggregate rating, automatically maintained
  • The reviews.rating_count standard Metafield - the total review count per product

These are recognised by Shopify's own integrations. Reviews stored in this format automatically surface in the Shop app, and can be syndicated to Google Shopping and Meta Shops via Shopify's native channel integrations.

Theme support

Several of Shopify's free themes (Dawn and its successors) include native sections that read from the standard Metaobject format. If your theme ships with a "Product reviews" section, it likely already reads from product.metafields.reviews.product_reviews and product.metafields.reviews.rating in Liquid. Check your theme's sections directory for a file like main-product.liquid orproduct-reviews.liquid.

If your theme already has a native review section, it will display reviews from any compliant app automatically - because the data format is standardised. You are not required to use the app's own display blocks.

4. What still requires an app

Shopify's native infrastructure handles data storage and display infrastructure. It does not ship:

  • Post-purchase review request emails. Triggering an email to a customer after their order is fulfilled, with a personalised review link, requires app infrastructure - email sending, template management, scheduling, and optionally discount code generation for incentives.
  • Review submission forms. The on-store form that customers fill in to submit a review (and the backend that validates and saves the submission) requires an app. Themes do not ship this logic natively.
  • Moderation interface. Reviewing, approving, rejecting, and replying to reviews through an admin UI is app territory. Shopify Admin's Metaobjects UI can edit individual records, but it is not a moderation workflow.
  • Translation. Automatically translating review text into your store's published languages requires an integration with a translation API. This is not a Shopify-native feature.
  • Import and migration. Ingesting reviews from other platforms (Judge.me, Loox, reviews.io, CSV files) in bulk requires an app to handle the format conversion and Metaobject creation.

In short: Shopify ships the data layer. An app provides the operational layer - collection, management, and optionally display. The two are now decoupled, which is an improvement over the old model where the app controlled both.

FiveOh Reviews on Metaobjects is the operational layer built for this new model - it writes to Shopify's standard Metaobject definition, keeping your data fully within Shopify.

Get more information →

5. What "native" really means

When merchants ask "can Shopify do reviews natively?", they usually mean one of two different things:

  • "Without paying for an app" - the answer here is mostly no, unless your needs are very basic (manually creating review Metaobjects via the Admin UI, which is technically possible but not practical for more than a handful of reviews).
  • "Without depending on a third-party server for my review data" - the answer here is yes. This is what the standard Metaobject format enables. The data lives in Shopify. The app is a workflow tool, not a data custodian.

The second interpretation is the more important one from an architectural standpoint. A store whose reviews are stored in Shopify's Metaobjects has native data - it renders server-side in Liquid, outputs structured data in the first HTML byte, and survives any change in which app is managing the workflow.

A store whose reviews are stored on a third-party server does not have native data, regardless of how seamlessly the widget integrates visually.

FiveOh Reviews on Metaobjects stores reviews in Shopify's native Metaobject layer - the data is in your store, not on an external server, making it truly native.

Get more information →

6. The data stays regardless of the app

The most consequential property of the Metaobject-based approach is persistence: the Metaobject records created in your store do not leave when an app is uninstalled. They are part of your store's data, not the app vendor's.

In practice, this means:

  • You can switch apps without losing reviews - install the new app, point it at the existing Metaobjects
  • You can uninstall an app during a pricing dispute without losing years of accumulated social proof
  • You can write custom Liquid sections that read directly from the Metaobjects, bypassing any app's display layer entirely
  • You can query your review data directly via the Shopify Admin GraphQL API for analytics or migrations
# Query your reviews directly - no app API required
query {
  metaobjects(type: "shopify--product-review", first: 50) {
    edges {
      node {
        handle
        fields {
          key
          value
        }
      }
    }
  }
}

This is the practical definition of "native" that matters for long-term store health: data that is yours to keep, read, and move - independent of any specific vendor relationship.

Marius Korbmacher

Written by Marius Korbmacher

Lead Developer at FiveOh Reviews on Metaobjects

FiveOh Reviews on Metaobjects

Reviews stored in Shopify. Rendered in Liquid. Yours to keep.

The review app that writes to Shopify's standard product review Metaobjects - server-side rendering, no JavaScript widget, no external dependency, no vendor lock-in.

Learn more →