← Back to blog

How to Integrate Product Reviews in Salesforce Commerce Cloud (SFCC)

Salesforce Commerce Cloud doesn't ship with a native product review system. Here's how to integrate one cleanly — covering Business Manager setup, ISML templates, and verified purchase badges.

Salesforce Commerce Cloud (SFCC / B2C Commerce) is one of the most powerful enterprise ecommerce platforms — but it ships with no native product review system. This surprises most teams coming from Shopify or WooCommerce, where reviews are table stakes.

The options most SFCC teams explore are:

  • Bazaarvoice or PowerReviews — deeply integrated enterprise tools, but very expensive and slow to implement
  • Build it in-house — a custom pipeline, custom object model, and custom frontend. Expensive to build and maintain
  • A third-party review integration — the fastest path to production-ready reviews on an SFCC storefront

Understanding SFCC cartridges

SFCC uses a cartridge system for extensions. Cartridges sit in a path hierarchy — your custom cartridges override framework cartridges, which override the Storefront Reference Architecture (SFRA). A properly built review integration plugs in at the right layer without modifying SFRA directly.

Step 1: Register the integration

Add the Growbic Reviews integration to your Business Manager. Navigate to Administration → Sites → Manage Sites → Settings and configure your Store ID and API Key in the custom preferences section.

Step 2: Add ISML templates to your product page

Include the review widget and schema templates in your product detail page ISML:

<!-- productdetails.isml -->

<!-- Review widget -->
<isinclude template="growbic/reviewWidget" />

<!-- JSON-LD schema for Google rich snippets (in <head>) -->
<isinclude template="growbic/reviewSchema" />

Step 3: Connect order data for review requests

Hook into your order pipeline to trigger review request emails after fulfillment. The integration maps SFCC order data to the Growbic API automatically once configured in Business Manager.

Step 4: Enable verified purchase badges

Verified purchase badges significantly increase review trust and conversion. Any customer who submits a review via the post-purchase email flow is automatically badged as a verified buyer.

Have questions about your specific SFCC setup? Contact us — we have hands-on SFCC experience and can help with your integration.