Combo badges

Overview

Combo badges show both Product and Ask An Owner questions and answers together, in a combined badge. Consumers can navigate directly to either the Product Reviews or Conversations tab in the lightbox depending on where they click on the badge.

Installation

  1. Include the Reevoo JavaScript library (only once per page)
  2. Add the reevoo-badge tag with type="combo" (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 Combo Badge

The product id is typically a SKU, or other unique identifier used to identify your product or service.

<reevoo-badge 
  type="combo"
  product-id="PRODUCT_ID"
></reevoo-badge>
<reevoo-badge 
  name="b_combo_score_rect_1"
  product-id="SKU"
></reevoo-badge>
464

Combo 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.

<reevoo-badge 
  type="combo" 
  manufacturer="ford"
></reevoo-badge>
<reevoo-badge 
  type="combo" 
  manufacturer="ford" 
  model="fiesta"
></reevoo-badge>
<reevoo-badge 
  type="combo" 
  manufacturer="ford" 
  model="fiesta" 
  model-year="2016"
></reevoo-badge>
<reevoo-badge 
  name="b_combo_score_rect_1"
  manufacturer="ford"
></reevoo-badge>