Skip to content

Installation

Install from the Shopify App Store

  1. Visit the SimplerSuite Reviews listing in the Shopify App Store
  2. Click Add app
  3. Authorize the requested permissions
  4. You’ll be redirected to the SimplerSuite Reviews dashboard inside your Shopify admin

Add the Widget to Your Theme

After installing the app, add the review widget to your product pages:

Add this snippet to your product template (e.g., sections/product-template.liquid):

<div id="simplerreviews"></div>
<script>
window.__simplerreviews = {
shopDomain: "{{ shop.permanent_domain }}",
productId: "{{ product.id }}",
};
</script>
<script src="https://cdn.simplersuite.co/widget.js" async defer></script>

Optional: Add a Star Rating Badge

To show a compact star rating near the product title that links to the full reviews section, add this element above the main widget:

<div id="simplerreviews-badge"></div>

To enable interactive one-click ratings from the badge, pass customer identity via Liquid:

<script>
window.__simplerreviews = {
shopDomain: "{{ shop.permanent_domain }}",
productId: "{{ product.id }}",
customerEmail: "{{ customer.email }}",
customerName: "{{ customer.name }}"
};
</script>

See Widget Setup → Star Rating Badge for full details.

Option 2: Automatic Installation

In the SimplerSuite Reviews dashboard, go to Settings → Installation and click Auto-install widget. This uses Shopify’s ScriptTag API to inject the widget automatically.

Headless Setup

If you’re using Hydrogen, Remix, or Next.js, see the React Components section instead.