How can I edit the text of my Stamped.io rating badge?

Topic summary

A user is trying to customize the text on their Stamped.io rating badge on a Shopify product page. They want to change the displayed text to “175+ trusted reviews” instead of the default format.

Current Setup:

  • The rating badge and icon are populated via Stamped.io metafields using their built-in plugin
  • The badge appears on the product detail page (PDP)

Technical Context:

  • The code snippet shows the section uses product.metafields.stamped.reviews_count and product.metafields.stamped.badge.value to display review data
  • The current implementation conditionally shows “trusted review” vs “trusted reviews” based on count

Status: The question remains unanswered with no solutions or guidance provided yet on how to override or customize the badge text while maintaining the Stamped.io integration.

Summarized with AI on November 25. AI used: claude-sonnet-4-5-20250929.

Hi Community,

I have a rating badge on my product pdp. I want to edit its text to 175+ trusted reviews. How can I do that? I’m using stamped.io and the icon and rating is coming from the metafields that has been added via stamped.io built in plugin.

2022-11-04_12-33.png

Here’s the store preview link: https://z2aifick26w0s5rw-56007327881.shopifypreview.com/products/sleep-restore-strips

Here is the section code:

{% if product.metafields.stamped.reviews_average %} {% assign rev_count = product.metafields.stamped.reviews_count | plus: 0 %} {{product.metafields.stamped.badge.value}}

{% else %}
{{ product.metafields.stamped.reviews_count }} Write A Review
{% endif %}