Product badges

Overview

Product badges show consumer ratings for specific products and services they have purchased from you. In addition to ratings for specific products, we also allow you to show ratings for groups of products, where applicable.

Installation

  1. Include the Reevoo JavaScript library (only once per page)
  2. Add the reevoo-badge tag with type="product" (can appear multiple times on the page)
  3. Specify Display Attributes if needed
  4. Specify Data Scope Attributes (at least product-id or manufacturer and model must be specified)
  5. Specify Actions Attributes as needed

Examples

Standard Product Badge

194

Reevoo Managed badges

There are two ways to display our standard product badge. The first uses a product-id to target a specific product. The product id is typically a SKU, or other unique identifier used to identify your product or service. The second way involves specifying a combination of manufacturer and model identifier - this option is typically used by our automotive partners.

<reevoo-badge 
  type="product" 
  product-id="PRODUCT_ID"
></reevoo-badge>
<reevoo-badge 
  type="product" 
  manufacturer="MANUFACTURER"
  model="MODEL"
></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. You will need to work with Reevoo to configure the different variants for your needs.

<reevoo-badge 
  type="product" 
  variant="VARIANT_NAME"
  product-id="PRODUCT_ID"
></reevoo-badge>
<reevoo-badge 
  type="product" 
  variant="VARIANT_NAME"
  manufacturer="MANUFACTURER"
  model="MODEL"
></reevoo-badge>

Self Managed badges

<reevoo-badge 
  name="b_product_score_rect_2" 
  product-id="PRODUCT_ID"
></reevoo-badge>
<reevoo-badge 
  name="b_product_score_rect_2" 
  manufacturer="MANUFACTURER"
  model="MODEL"
></reevoo-badge>

Product Badges for Product Groups

Instead of using a product id or manufacturer and model combination, you can use product group identifier.

<reevoo-badge 
  type="product" 
  product-id="series:GROUP_IDENTIFIER"
></reevoo-badge>

Product Badges for Automotive Partners

Our automotive partners who have Automotive Aggregation enabled can display the product badges based on automotive metadata.

Automotive metadata includes attributes like engine-type, model-variant, model-year, and many others. The full list of attributes is available in our Data Scope Attributes documentation.

The minimum required attributes are manufacturer and model, which are used with any combination of automotive metadata attributes. We strongly recommend using additional metadata attributes to get more relevant scores.

<reevoo-badge
  type="product"
  manufacturer="ford"
  model="fiesta"
  model-variant="SE"
  model-year="2016"
  body-type="hatchback"
  used="0"
  engine-type="diesel"
></reevoo-badge>