Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save loughlincodes/0f98ace464acd1f47cd887b5c7c31158 to your computer and use it in GitHub Desktop.
Save loughlincodes/0f98ace464acd1f47cd887b5c7c31158 to your computer and use it in GitHub Desktop.
Shopify Loox Reviews - get total reviews
<div class="reviews">
{% assign looxstats = shop.metafields.loox["global_stats"] | split: "," %}
{% assign looxstar = looxstats[0] | round %}
{% assign looxcount = looxstats[1] | times:100 | money_without_currency | remove: '.00' %}
<a href="pages/happy-customers">Reviews (<span class="looxstars">{% for i in (1..looxstar) %}&#9733;{% endfor %}</span> {{ looxcount }})</a>
</div> <!-- end review -->
@loughlincodes
Copy link
Author

No probs! Best of luck 🤞

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment