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
- Include the Reevoo JavaScript library (only once per page)
- Add the
reevoo-badge
tag withtype="combo"
(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
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>

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>
Updated almost 3 years ago