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

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>
Updated over 2 years ago