Ask An Owner badges

Overview

Ask An Owner is our way of allowing consumers to ask people who have already bought products and services questions about them, to guide their own buying decisions.

Installation

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

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

<reevoo-badge 
  type="aao"
  product-id="PRODUCT_ID"
></reevoo-badge>
167

Ask An Owner 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="aao" 
  manufacturer="ford"
></reevoo-badge>
<reevoo-badge 
  type="aao" 
  manufacturer="ford" 
  model="fiesta"
></reevoo-badge>
<reevoo-badge 
  type="aao" 
  manufacturer="ford" 
  model="fiesta" 
  model-year="2016"
></reevoo-badge>