k-sync
Back to blog

Migrating WooCommerce product reviews to Shopify (2026)

How to migrate WooCommerce product reviews to Shopify — native review import, third-party apps (Judge.me, Stamped, Yotpo), preserving star ratings and review counts for SEO.

·By k-sync
5 min read · 1,095 words

Product reviews are social proof — and they're earned over years, not days. Losing them during a platform migration means losing trust signals that directly affect conversion rates. The good news: migrating WooCommerce product reviews to Shopify is well-supported, but the approach depends on which review app you use on Shopify.

WooCommerce reviews vs Shopify native reviews

WooCommerce stores reviews as WordPress comments with a product rating meta field. Each review has:

Shopify has built-in product reviews via the Product Reviews app (free, by Shopify). However, this app is limited — no review request emails, no Q&A, no rich media. Most stores use a third-party review platform.

Option 1: Shopify Product Reviews app (native)

The Shopify Product Reviews app is free and supports CSV import of reviews. This is the simplest migration path.

Export format required

Shopify Product Reviews app accepts CSV with these columns:

product_handle,title,body,rating,name,email,ip_address,date_created,date_updated,status

Where:

Migration steps

  1. Export WooCommerce reviews via phpMyAdmin or WooCommerce Review Importer plugin — extract comment_content, comment_author, comment_author_email, comment_date, meta_value (rating)
  2. Map WooCommerce product IDs to Shopify product handles (handles are available in your Shopify product export CSV)
  3. Format the CSV to match Shopify's expected columns
  4. Import via Shopify Product Reviews app Settings → Import Reviews

Limitation: Review images are not supported. The native Shopify Reviews app is also being deprecated in favor of third-party apps; Shopify recommends migrating to apps like Judge.me for more features.

Option 2: Judge.me (recommended)

Judge.me is the most popular product review app on Shopify (used by 500,000+ stores) and has the best WooCommerce import support. It imports reviews for free, even on the free plan.

Import process

  1. Install Judge.me from the Shopify App Store (free plan is sufficient for import)
  2. Go to Judge.me Dashboard → Reviews → Import
  3. Select "WooCommerce" as the source platform
  4. Upload the WooCommerce reviews export (Judge.me accepts WooCommerce's native XML export format)
  5. Judge.me automatically matches reviews to Shopify products by SKU or product title

What Judge.me imports from WooCommerce

Matching logic

Judge.me matches reviews to Shopify products by:

  1. SKU (most reliable — requires the same SKU in WooCommerce and Shopify)
  2. Product handle/slug
  3. Product title (fuzzy match)

For best results: ensure your products migrate with the same SKUs from WooCommerce to Shopify (k-sync preserves SKUs during migration).

Judge.me free vs paid

The free plan includes unlimited review imports. Paid plan ($15/month) adds automated review request emails, Q&A, Google Shopping reviews, and SEO rich snippets. The import feature itself is free.

Option 3: Stamped.io

Stamped is another popular review platform with WooCommerce import support. Import steps:

  1. Install Stamped and go to Reviews → Import Reviews
  2. Export WooCommerce reviews as CSV (using the Export Reviews plugin or manual DB export)
  3. Map columns: product_id/handle, rating, author, email, body, date
  4. Import — Stamped matches by product handle or SKU

Stamped plans start at $23/month. If you were using WooCommerce Reviews Pro or a Stamped WooCommerce integration previously, Stamped may have direct export/import tools available.

Option 4: Yotpo

Yotpo is enterprise-grade and expensive ($119+/month), but if you were already using Yotpo on WooCommerce, your review data is already in Yotpo's system — just connect Yotpo to your new Shopify store and all reviews carry over automatically. No CSV migration needed.

If you weren't using Yotpo before: the import process is similar to Judge.me/Stamped but through Yotpo's onboarding team. The cost is only justified for large stores with complex review requirements.

Exporting WooCommerce reviews

Method 1: WooCommerce built-in export

WooCommerce doesn't have a native review export, but the "Import Export Suite for WooCommerce" plugin includes review export functionality. Free alternatives: use phpMyAdmin to run a SQL query.

Method 2: SQL export via phpMyAdmin

SELECT
  p.post_name as product_handle,
  c.comment_author as reviewer_name,
  c.comment_author_email as reviewer_email,
  c.comment_content as review_body,
  c.comment_date as review_date,
  m.meta_value as rating
FROM wp_comments c
JOIN wp_posts p ON c.comment_post_ID = p.ID
JOIN wp_commentmeta m ON c.comment_ID = m.comment_id
WHERE p.post_type = 'product'
  AND c.comment_approved = '1'
  AND m.meta_key = 'rating'
ORDER BY c.comment_date DESC;

Export this query result as CSV and format for your chosen review app.

Method 3: WooCommerce REST API

The WooCommerce REST API exposes product reviews at GET /wp-json/wc/v3/products/reviews. This returns all approved reviews with rating, reviewer, date, review text, and product ID. Use this to export programmatically.

Preserving star rating averages and review counts

One concern with review migration is that new Shopify stores start with 0 reviews showing on product pages, even before the import. After a successful import:

SEO impact: If your WooCommerce product pages had star ratings in Google search results (via WooCommerce schema), expect a temporary disappearance of these stars during migration. They will return once Google re-crawls with the new Shopify review schema in place.

Review migration checklist

What about Q&A and other review types?

If you used WooCommerce Product Questions & Answers plugin or similar:

Product review migration is one of the more straightforward parts of a WooCommerce to Shopify migration when you choose the right app and export method. Plan to spend 2–4 hours on this task, including export, formatting, import, and verification.

Migrate your store with k-sync

Connect your WooCommerce store, validate your products, and push to Shopify in minutes. Free for up to 50 products.

Get started free

Related reading

Browse all migration guides