rachael.fulcher
2/13/2019 - 2:12 AM

Bracketed count next to star summaries

.okeReviews.okeReviews--theme .okeReviews-reviewsSummary-ratingCount {
    display: none;
}
[data-oke-reviews-product-listing-rating],
[data-oke-reviews-product-listing-rating] .okeReviews.okeReviews--theme,
.okeReviewsStarSummary-stars {
    display: inline;
}
.okeReviewsStarSummary-count {
    font-size: 0.8em;
}
{% if product.metafields.okendo.RatingAndReviewCount > 0 %}
  <div class="okeReviewsStarSummary">
    <div class="okeReviewsStarSummary-stars">
      <div data-oke-reviews-product-listing-rating>{{ product.metafields.okendo.ProductListingSnippet }}</div>
    </div>
    <span class="okeReviewsStarSummary-count">
      ({{ product.metafields.okendo.RatingAndReviewCount }})
    </span>
  </div>
{% endif %}