Comment on page
Star Rating
Star Ratings build shopper trust on collection and product pages with subtle yet powerful displays of customer feedback. Star Ratings show the average aggregated rating of published customer reviews as well as the total number of published reviews.
Shopify Online Store 2.0
Shopify Vintage Theme
- 1.Create a new liquid snippet in the snippets folder with the following name:
snippets/okendo-reviews-product-rating-summary.liquid
- 2.Inside your newly created liquid file, add the following HTML snippet:<div data-oke-star-rating></div>
- 3.
- 4.Copy the following snippet and place it in your Theme Code where you would like the widget to appear:
{% render 'okendo-reviews-product-rating-summary', product: product %}
The preferred method of configuring the Star Rating is via the Okendo Admin which can be accessed in the Okendo app via Reviews -> On-Site Displays:

Use these data attributes on the widget markup to customise its configuration. None of these attributes are required.
Data Attribute | Description | Value Type | Supported Values | Required |
---|---|---|---|---|
data-oke-star-rating | This tells Widget Plus to show a star rating when the element is initialised. | | | ✅ |
data-oke-reviews-product-id | Used to specify a Shopify Product ID with the word shopify- in front of it. The star snippet will only show aggregate data for a particular product. | string | | |
data-oke-reviews-group-id | Used to specify an Okendo Group ID so that the star snippet only shows aggregate data for that particular group of products. | string | Any valid product group ID in a GUID format e.g. 69d2e67d-b980-4333-97b7-30411807a7b1 | |
data-oke-all-reviews | Determines whether or not to show the star snippet with the aggregate data from all reviews. | boolean | true , false | |
data-oke-scroll-disabled | Determines whether or not clicking the star snippet will scroll to the reviews widget. | boolean | true , false | |
One of the following data attributes must be used in conjunction with the
data-oke-star-rating
attribute:- 1.
data-oke-reviews-product-id
- 2.
data-oke-reviews-group-id
- 3.
data-oke-all-reviews
Without specifying a data source for the reviews, the widget will show all reviews for your store. You can provide either a Product ID or a Group ID to use that as the data source for the reviews.
<div data-oke-star-rating data-oke-reviews-product-id="shopify-<PRODUCT_ID>"></div>
The product widget also has some pre-rendered content stored in Shopify Metafields that we recommend including for increased performance on-site:
<div data-oke-star-rating data-oke-reviews-product-id="shopify-<PRODUCT_ID>">
{{ product.metafields.okendo.StarRatingSnippet }}
</div>
<div data-oke-star-rating data-oke-reviews-group-id="<GROUP_ID>"></div>
<div data-oke-star-rating data-oke-all-reviews="true"></div>
During a migration from our Legacy Widget to Widget Plus it is useful to keep showing the Legacy Widget until Widget Plus is enabled. This snippet shows how this can be achieved:
{% if shop.metafields.okendo.settings.isWidgetPlusEnabled == true %}
{% assign renderWidgetPlusContent = true %}
{% elsif shop.metafields.okendo.settings.isWidgetPlusAdminEnabled == true %}
{% if request.design_mode or theme.role == "unpublished" %}
{% assign renderWidgetPlusContent = true %}
{% endif %}
{% endif %}
{% if renderWidgetPlusContent == true %}
<div data-oke-star-rating data-oke-reviews-product-id="shopify-{{ product.id }}">
{{ product.metafields.okendo.StarRatingSnippet }}
</div>
{% else %}
<div data-oke-reviews-product-listing-rating>
{{ product.metafields.okendo.ProductListingSnippet }}
</div>
{% endif %}
Last modified 10mo ago