Brand badges
Overview
Brand badges show consumer ratings concerning your brand. We currently support Overall Service, Customer Service and Delivery ratings for consumers to leave feedback about their experience buying from you. Brand badges are available for your company as a whole, and where applicable, for specific branches where consumers have shopped.
Installation
- Include the Reevoo JavaScript library (only once per page)
- Add the
reevoo-badge
tag withtype="brand"
orname="BRAND-BADGE-NAME"
(can appear multiple times on the page) - Specify Display Attributes if needed
- Specify Data Scope Attributes (at least
product-id
ormanufacturer
andmodel
must be specified) - Specify Actions Attributes as needed
Examples
Overall Service Rating

Reevoo Managed badges
<reevoo-badge
type="brand"
></reevoo-badge>
<reevoo-badge
type="brand"
variant="VARIANT_NAME"
></reevoo-badge>
You can also specify a badge variant name. Use this attribute to show different badges on different pages. For example category listing, search result and product pages may show different badge designs.
Reevoo has to configure each variant and apply specific Look and Feel of badges.
Client Managed badges
You can also choose to use one of our brand badges from our badge library using the name attribute.
<reevoo-badge
name="b_brand_percent_rect_3"
></reevoo-badge>
The steps described above allow you to display badges for your overall service rating. To display customer service rating set the score attribute to customer_service
. To display delivery rating set the score attribute to delivery
.
Customer Service Rating

Reevoo Managed badges
<reevoo-badge
type="brand"
score="customer_service"
></reevoo-badge>
Self Managed badges
<reevoo-badge
name="b_brand_percent_rect_3"
score="customer_service"
></reevoo-badge>
Delivery Rating

Reevoo Managed badges
<reevoo-badge
type="brand"
score="delivery"
></reevoo-badge>
Self Managed badges
<reevoo-badge
name="b_brand_percent_rect_3"
score="delivery"
></reevoo-badge>
Branch Specific
To limit the score to a particular branch set the branch-code
attribute.
Reevoo Managed badges
<reevoo-badge
type="brand"
branch-code="BRANCH_CODE"
></reevoo-badge>
Self Managed badges
<reevoo-badge
name="b_brand_percent_rect_3"
branch-code="BRANCH_CODE"
></reevoo-badge>
Branch specific badges will not be rendered if the
BRANCH-CODE
is not provided in your Branch Feed.
Updated almost 3 years ago