Skip to content

Structured Data / SEO

Automatic JSON-LD

The SimplerSuite Reviews widget automatically injects JSON-LD structured data into your product pages. This enables Google rich snippets showing star ratings in search results.

What Gets Injected

{
"@context": "https://schema.org",
"@type": "Product",
"name": "Your Product Name",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.6",
"reviewCount": 42,
"bestRating": "5",
"worstRating": "1"
},
"review": [
{
"@type": "Review",
"reviewRating": { "@type": "Rating", "ratingValue": 5 },
"name": "Review title",
"reviewBody": "Review text...",
"author": { "@type": "Person", "name": "Customer Name" },
"datePublished": "2025-01-15"
}
]
}

Up to 10 recent approved reviews are included.

Headless / Server-Side

For headless storefronts, fetch structured data from the API:

GET /storefront/structured-data?shop=your-store.myshopify.com&product_id=7654321098

Then inject it into your page’s <head>:

<script type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(structuredData) }}
/>

Verifying

Use Google’s Rich Results Test to verify your structured data is correctly detected.