Blog/Google reviews·6 min read

Google product reviews: How to get and show them (2026)

Learn how to collect and display Google Product Reviews on your store to boost trust, improve search visibility, and help customers make confident buying decisions.

Krunal vaghasiyaKrunal vaghasiya|November 3, 2025 · Updated April 16, 2026
Google product reviews: How to get and show them (2026)

I’ve helped a lot of store owners get set up on Google Shopping, and the question I hear most often isn’t about ads, bidding, or feed optimization.

It’s: “Why aren’t my star ratings showing up?”

Google Product Reviews are one of the most high-value things you can get right as an ecommerce store. Products with star ratings in Google Shopping ads get significantly higher click-through rates.

Shoppers trust them. And yet, the setup process is genuinely confusing because Google has three different review-related programs that all sound similar.

This guide cuts through all of it. I’ll show you exactly how Google Product Reviews work, how to collect them, how to display them, and how to avoid the mistakes that keep star ratings from ever appearing.

What are Google Product Reviews? (And why they’re not the same as store ratings)

Here’s where most guides get it wrong: they treat “Google Product Reviews” as one thing. It’s actually three separate programs, and mixing them up is the fastest way to waste weeks of setup time. Let me break them down.

Google product ratings

Google product ratings

Product Ratings are the star icons (like ★★★★☆ 4.5 stars) you see on Google Shopping listings. They represent the average score across all submitted reviews for a specific product. Shoppers see these at a glance before clicking anything.

To show product ratings, you need at least 50 total reviews across your catalog and a minimum of 3 reviews per individual product. Google calculates these automatically once your feed is connected and approved.

Google product reviews

Google product reviews

Product Reviews are the written feedback and comments from verified customers. These are more detailed, they’re tied to specific products via GTINs or MPNs, and they live in Google Shopping alongside the star ratings.

You collect these through a Product Reviews Feed (an XML file you submit to Google Merchant Center) or via an approved third-party partner.

Google customer reviews and store ratings

Google customer reviews and store ratings

Google Customer Reviews is a free program that sends a survey email to your customers after purchase, asking them to rate their overall experience with your store.

This is different from product-level reviews. It builds your Store Rating, which appears in Google Shopping ads and Google Search.

Store Ratings aggregate your reputation across multiple review sources, including Trustpilot, Reviews.io, and others you’re listed on.

Feature Product Ratings Product Reviews Store Ratings
What it shows Star score on Shopping listings Written customer feedback Overall business rating across platforms
Minimum to qualify 50 total reviews, 3 per product No stated minimum, but tied to ratings Varies by source aggregation
How to collect XML product reviews feed or approved partner Same as above Google Customer Reviews opt-in or aggregation
Where it appears Google Shopping listings and ads Google Shopping product pages Google Ads, Shopping, Search

All your reviews in one place

Collect reviews, manage every response, and display them where they matter most.

Start Free →

Google’s eligibility rules and policies (the ones that actually matter)

Google reviews eligibility rules and policies

Before you spend time setting up a product reviews feed, make sure your store actually qualifies. Google has requirements here, and a few of them trip people up.

What you need to qualify

  • An active Google Merchant Center account with Shopping ads enabled
  • At least 50 total product reviews across your entire catalog
  • A minimum of 3 reviews per individual product to show ratings on that product’s listing
  • Accurate product identifiers in your feed: GTIN, Brand, and MPN (or a valid SKU where GTIN isn’t available)
  • Reviews from verified customers only, with a genuine mix of positive and negative feedback

That last point is important. Google’s policy explicitly prohibits review gating, which means you can’t selectively ask only happy customers for reviews. You need to ask everyone. And you can’t filter out negative reviews before submitting your feed.

What will get your feed disapproved?

These are the most common reasons feeds get rejected or reviews disappear:

  • Fake reviews, duplicates, or reviews from store employees
  • Reviews that are incentivized without the <incentivized_review> attribute set to true in your XML
  • Missing or mismatched product identifiers (a GTIN in the review feed that doesn’t match your product feed)
  • Review dates that are implausibly old or in the future
  • Reviews for products that no longer exist in your Merchant Center product feed

If your feed gets disapproved, Merchant Center shows the reason in the diagnostics tab. Fix the flagged items and resubmit. It doesn’t automatically re-check unless you trigger it.

How to collect Google product reviews for your store

Getting reviews into Google’s system takes more than just hoping customers leave feedback. You need to actively collect them. Here’s how.

Option 1: Google customer reviews (the free, built-in way)

This is Google’s native review collection program. It’s free, reasonably simple to set up, and gets you store-level feedback that feeds your Store Rating.

Step 1: Enable it in Merchant Center

Google Merchant Center

Log into Google Merchant Center, go to Growth → Manage Programs, find the Google Customer Reviews card, and click “Get Started.” You’ll agree to the program terms and get a JavaScript snippet to add to your site.

Step 2: Add the opt-in code to your thank-you page

Paste the snippet on your order confirmation page. This adds a small survey opt-in overlay after purchase, asking the customer if they’re willing to leave feedback. Most shoppers ignore it. That’s normal. Even a 5% opt-in rate adds up over time.

Step 3: Add product-level GTINs to the snippet

If you want product-specific ratings (not just store-level), add an extra parameter to the opt-in code with the product’s GTIN. Google uses this to match the review to the right product in your catalog.

Step 4: Wait for onboarding

After setup, Google reviews your integration. Onboarding typically takes 7 to 10 days. Ratings won’t appear until this process is complete.

Option 2: Submit a product reviews feed (the better approach for most stores)

If you’re already collecting reviews through a third-party platform (like WiserReview), submitting a Product Reviews Feed is almost always the faster path to getting star ratings visible in Shopping.

1. Get accepted into the Product Ratings / Product Reviews program

Submit the Product Ratings Interest Form in your Google Merchant Center. You need at least 50 reviews across all products.

2. Create & Format Feed

Use the XML format with the required fields (GTIN, Brand, MPN, ratings, review text, and date).

Sample Product Review Feed (XML)

The feed is an XML file in Google’s product reviews schema. Here’s a minimal working example:

<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:noNamespaceSchemaLocation="https://www.google.com/shopping/reviews/schema/product/2.3/product_reviews.xsd">
  <version>2.3</version>
  <aggregator>
    <name>Your Platform Name</name>
  </aggregator>
  <publisher>
    <name>Your Store Name</name>
  </publisher>
  <reviews>
    <review>
      <review_id>12345</review_id>
      <reviewer><name>Sarah M.</name></reviewer>
      <review_timestamp>2025-11-10T09:30:00Z</review_timestamp>
      <title>Great product, fast shipping</title>
      <content>Exactly as described. Arrived in 2 days.</content>
      <review_url type="permalink">https://yourstore.com/reviews/12345</review_url>
      <ratings>
        <overall min="1" max="5">5</overall>
      </ratings>
      <products>
        <product>
          <product_ids>
            <gtin>0123456789012</gtin>
            <brand>YourBrand</brand>
          </product_ids>
          <product_name>Example Product</product_name>
          <product_url>https://yourstore.com/products/example</product_url>
        </product>
      </products>
    </review>
  </reviews>
</feed>

How to submit the feed:

  1. In Merchant Center, go to Growth → Manage Programs → Product Ratings and submit the interest form
  2. Once approved (usually 2 to 4 weeks), go to Analytics → Reviews → Product Reviews
  3. Click “Add product reviews” and choose your upload method: scheduled fetch via URL, manual upload, or SFTP
  4. Update the feed at least monthly. Weekly is better. Stale feeds lose visibility.

All your reviews in one place

Collect reviews, manage every response, and display them where they matter most.

Start Free →

Option 3: Use an approved review partner: WiserReview

If manual XML feeds sound like a headache, you can skip most of this by using a review platform that’s already integrated with Google’s Product Ratings program.

The platform handles the feed generation and submission automatically.

Google’s approved partners include Bazaarvoice, PowerReviews, Yotpo, and WiserReview, among others. If you’re using one of these, your reviews get submitted to Google on a schedule without you touching any XML.

Step 1: Create a WiserReview account by signing up.

WiserReview

Go to “WiserReview“, click “Login”.

Step 2: Turn on Google review integration

Google review integration WiserReview

To link your Google Merchant Center account, click “Integration” in your WiserReview dashboard, choose Google Product Reviews, and then follow the directions.

Step 3: Configure automated review requests

Set up your automated review requests by WhatsApp, SMS, and email under WiserReview’s Automation section.

To encourage customers to provide feedback on their purchases, you can personalize the messages sent via WhatsApp, SMS, or email.

Step 4: Include Forms for Product-Specific Review Requests

WiserReview forms

Include the Google Product Review form on your order confirmation or product pages.

Click “add” in WiserReview’s forms area, then enter the name of your form and click “create form.” Make the form and alter it to fit your requirements.

WiserReview forms

Customers will be prompted to give a review for the particular product they purchased via WiserReview, which will automatically collect the required product data (such as GTIN and MPN).

Step 5: Share QR codes for Google review

Share QR codes for Google review WiserReview

Create QR codes with WiserReview and put them on product packaging, in-store signs, and receipts. After that, clients can scan these codes to post reviews on your Google Business Profile.

Step 6: Display reviews on your website

WiserReview widgets

To display the reviews you’ve gathered on your website, use WiserReview’s editable widgets.

Slider Image
Slider Image
Slider Image

All your reviews in one place

Collect reviews, manage every response, and display them where they matter most.

How to get more customers to actually leave reviews

How to get more customers to actually leave reviews

This is the part most guides skip past. Getting to 50 reviews is harder than it sounds if you’re starting from zero.

Here’s what I’ve seen actually move the needle:

Send the request at the right moment

Review request emails sent 2 to 3 days after confirmed delivery get meaningfully higher open and response rates than those sent at purchase. The customer has the product in their hands. The experience is fresh. That’s your window.

Pair a direct link to the review form with a personal touch, using the product name and order number, and you’ll see better results than a generic “how did we do?” email.

For the subject line, keep it direct: “Quick question about your [Product Name]” outperforms “We’d love your feedback” almost every time.

Make the form short

A 10-question survey will get abandoned. Three to five focused questions with a clear star rating field is enough. Make it mobile-friendly.

A surprising number of review forms aren’t, and that alone kills completion rates.

Use multiple channels

Email alone leaves clicks on the table. SMS review requests get higher open rates (sometimes dramatically so). QR codes on packaging or receipts work well for physical goods.

Post-purchase landing pages can capture reviews before shoppers even open their inbox.

A multi-channel approach isn’t about being pushy. It’s about meeting the customer where they actually are.

Offer incentives

You can offer small incentives like a discount on a future order, but Google requires you to disclose this in your feed using the <incentivized_review> attribute.

Never tie the incentive to a positive rating. That’s both a policy violation and, honestly, it produces reviews that aren’t actually useful to your shoppers.

Set realistic targets

Expect 5% to 10% of customers to leave reviews if you’re running a solid collection process. For a store doing 1,000 orders a month, that’s 50 to 100 new reviews.

Reaching Google’s 50-review threshold should occur within your first few months of active collection.

How to display Google product reviews on your website

Collecting reviews is only half the job. They need to show up where customers actually look: your product pages, homepage, and anywhere else shoppers form their first impression.

Here’s how you can display Google product reviews using “WiserReview”.

Step 1: Integrate your Google business profile

Go to Integrations after logging into your WiserReview account, then choose Google Business Profile. Verify your identity and connect WiserReview to your Google Business Profile.

Step 2: Select a review widget

In your WiserReview dashboard, from the left-side menu bar, click “widgets”.

WiserReview widgets

The most common approach is a review widget that pulls your collected reviews and displays them on your site. WiserReview offers:

  • Carousel: Reviews displayed in a rotating slider, works well on homepages and landing pages
  • Wall/Grid: Multiple reviews displayed at once, good for dedicated testimonials pages
  • Popup: A modal that appears at strategic points in the customer journey
  • Floating badge: A persistent rating badge anchored to the corner of your page

Step 3: Customize your selected widget

WiserReview widget

Adjust the widget’s appearance to match your website’s branding.

Set filters to display specific reviews (e.g., 4- or 5-star reviews) and configure the widget’s position on your site (e.g., header, footer, sidebar).

Step 4: Integrate the widget into your website

WiserReview widgets embed code

Copy the WiserReview embed code and insert it into the HTML of your website at the relevant spot. And then click “Debug on site.”

Add Schema Markup to your product pages

Schema markup is the structured data code that tells Google how to interpret your review content. Without it, your reviews might never appear as rich snippets in search results, even if they’re there on the page.

Here’s a basic JSON-LD example to add to the <head> section of your product pages:

{
  "@context": "https://schema.org",
  "@type": "Product",
  "name": "Running Shoes",
  "aggregateRating": {
    "@type": "AggregateRating",
    "ratingValue": "4.6",
    "reviewCount": "312"
  },
  "review": [
    {
      "@type": "Review",
      "author": {"@type": "Person", "name": "Marcus T."},
      "reviewRating": {"@type": "Rating", "ratingValue": "5"},
      "reviewBody": "Best running shoes I've owned. Comfortable from day one."
    }
  ]
}

After adding it, run your pages through Google’s Rich Results Test to confirm the markup is being read correctly. Fix any errors before the errors fix your rankings for you.

If you’re using WiserReview or a similar platform, schema markup is typically generated automatically. You don’t need to touch the code.

Connect your Google Business Profile to your review widget

If you also collect reviews on your Google Business Profile (which you should), you can pull those into your on-site widgets too.

Log in to your review platform, go to integrations, connect your Google Business Profile, and the reviews sync automatically.

This is particularly useful if you have strong GBP reviews but are just getting started on product-specific reviews.

How Google product reviews affect your shopping ads performance

The business case for getting this right is pretty straightforward. Products with star ratings in Shopping listings stand out from those without them. Shoppers notice stars. They click on them. A few things happen when your Shopping listings have ratings:

Click-through rate goes up: Products with verified star ratings in ads typically see CTR improvements, sometimes significantly. That’s more traffic for the same ad spend.

Conversion rates improve: A 4.7-star product with 200+ reviews practically sells itself. Shoppers who arrive having already seen strong social proof convert at higher rates than those who arrive cold.

Quality Score gets a boost: Higher CTR tells Google your ad is relevant. A better Quality Score means lower cost per click over time. Positive reviews essentially pay for themselves in reduced ad costs.

You stand out in competitive categories: If three competing products all look similar in Shopping listings but only yours has star ratings, that visual difference is significant. Most shoppers won’t scroll past it.

All your reviews in one place

Collect reviews, manage every response, and display them where they matter most.

Start Free →

Validating and maintaining your review system

How to maintain your review system

Getting set up is the beginning. Maintaining it is where most stores fall down.

Monitor your feed health in Merchant Center

Merchant Center shows your review feed status as Active, Needs Attention, or Disapproved. Check this regularly.

A disapproved status means your reviews aren’t being shown, and it can happen without any obvious notification if you’ve made changes to your product catalog that cause identifier mismatches.

The most common issues:

  • GTINs in the review feed that no longer match your active product listings.
  • Missing required fields (review date, reviewer name, product URL).
  • Feed fetch failures because the XML file URL returned an error.
  • Encoding issues in the XML, especially with special characters in the review text.

When you fix an issue, resubmit the feed and monitor until the status changes back to Active.

Test your structured data

Use these three tools to make sure your schema markup is working:

  • Rich Results Test (search for it on Google): paste in a URL and see which rich results your page qualifies for, plus any errors blocking them
  • Schema Markup Validator: checks your markup against schema.org specifications, independent of Google-specific rules
  • Google Search Console → Enhancements: after Google crawls your pages, this report shows how many items have valid vs invalid structured data

Fix red errors first. Warnings can usually wait.

Keep your reviews fresh

Shoppers pay attention to review dates. A product page where the most recent review is from 18 months ago raises questions. Run your review collection consistently so there’s always recent activity on your pages.

Show your most recent reviews first by default. Let customers sort by “Most Recent” or “Most Helpful.”

If a product has changed significantly since older reviews were written, that’s worth flagging in your responses to those reviews.

Handle negative reviews professionally

You can’t remove negative reviews because they don’t reflect well on you. That’s both a policy violation and counterproductive.

Shoppers trust stores with a realistic review distribution more than those with suspiciously perfect ratings.

When you get a negative review, respond publicly and specifically. Address the actual complaint. Explain what you did or will do to fix it.

Then offer to take the conversation private to resolve it. A well-handled negative review can actually build more trust than a positive one.

If a review is genuinely fake or violates Google’s content policies, you can flag it for removal through Merchant Center. Just be honest about which category it falls into.

Common mistakes that prevent star ratings from appearing

Common mistakes that prevent star ratings from appearing

I’ve seen the same mistakes come up again and again. If your setup is complete but ratings still aren’t showing, check these first.

Incorrect or missing GTINs: The GTIN in your review feed must exactly match the GTIN in your product feed. If they’re different, or if one is missing, Google can’t match the review to the product and won’t display ratings.

Not hitting the 50-review threshold: If your catalog has 200 products but only 40 total reviews spread across them, you don’t qualify yet. You need 50 total reviews, and then at least 3 per individual product to show ratings for that specific product.

Submitting reviews from a non-approved partner: If you’re using a review tool not on Google’s approved partner list, your reviews won’t be accepted. Check the current list in Merchant Center before building out your collection workflow.

Never updating the feed: A static feed that you uploaded once and forgot about will eventually become stale. Google may deprioritize or remove ratings from feeds that haven’t been updated in a long time. Set a calendar reminder to update at least monthly.

Enabling the program but skipping the opt-in code: Turning on Google Customer Reviews in Merchant Center won’t take effect unless you’ve added the JavaScript snippet to your checkout confirmation page. The opt-in form won’t appear, and no surveys will be sent.

Getting started: What to do this week

If you’re starting from zero, here’s a realistic action plan for the next week:

Day 1: Log in to Merchant Center and check whether the Product Ratings program is already available. If not, submit the interest form.

Day 2: Set up your review collection process. If you’re using a third-party platform, connect it to Merchant Center. If you’re going manual, start building your XML feed template.

Day 3: Add the Google Customer Reviews opt-in snippet to your thank-you page. Even if you’re pursuing the product feed route, the store-level reviews build your overall reputation on Google.

Day 4 to 7: Audit your existing reviews. Check that your product identifiers are accurate. If you already have customer reviews sitting in a platform or spreadsheet, get them formatted for the XML feed.

It’s not a fast process. The onboarding and approval period takes 2 to 4 weeks. But once your star ratings are live in Google Shopping, they work for you around the clock on every impression your products get.

If you want to automate the collection side, WiserReview handles feed generation and submission to Google automatically. You set it up once and focus on getting more orders instead of managing XML files. There’s a free plan to get started.

Wrap up

Google Product Reviews aren’t complicated once you understand how the three programs fit together. Product Ratings show your stars on Shopping listings. Product

Reviews carry the written feedback tied to specific items. Store Ratings reflect your overall business reputation across the web.

The stores that get this right do three things consistently:

  • They collect reviews from every customer (not just the happy ones),
  • They keep their feeds updated so Merchant Center stays active,
  • They display reviews where shoppers actually look before buying.

That’s it. No shortcuts, no tricks. Just a system that runs reliably in the background while you focus on the store.

If you want to skip the manual XML work and let the collection, feed submission, and display all happen automatically, WiserReview has a free plan to get you started.

All your reviews in one place

Collect reviews, manage every response, and display them where they matter most.

Start Free →

Frequently Asked Questions

Common questions about this topic

After approval, onboarding takes about 7–10 days. Once your feed is active, new reviews usually appear within 24–48 hours.
No. Google requires all reviews, positive or negative. Removing or filtering them violates policy. Instead, respond professionally to build trust.
You need at least 50 total reviews across all products and a minimum of 3 reviews per product to show ratings.
Not directly. Google only accepts reviews you collect or import from approved partners such as Bazaarvoice, Yotpo, or WiserReview.
At least once a month, though weekly updates are better. Tools like WiserReview can automate this process for you.

Written by

Krunal vaghasiya

Krunal vaghasiya

Krunal Vaghasia is the founder of WiserReview and an eCommerce expert in review management and social proof. He helps brands build trust through fair, flexible, and customer-driven review systems.