Product reviews
Installation
- Include the Reevoo JavaScript library (only once per page)
- Add the
reevoo-embeddable
tag with `type="product" - Specify Display Attributes if needed
- Specify Data Scope Attributes (at least
product-id
ormanufacturer
andmodel
must be specified) as needed
Examples
Embedded Product Reviews
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-embeddable
type="product"
product-id="PRODUCT_ID"
per-page="10"
locale="en-GB"
></reevoo-embeddable>
Embedded Product Reviews for Automotive Partners
Our automotive partners who have Automotive Aggregation enabled can display the product reviews 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.
Minimum required attributes are type
, manufacturer
and model
.
<reevoo-embeddable
type="product"
manufacturer="ford"
model="fiesta"
per-page="10"
></reevoo-embeddable>
We strongly recommend using more specific parameters such as model-year
, body-type
, etc to get more relevant scores. For example:
<reevoo-embeddable
type="product"
manufacturer="ford"
model="fiesta"
model-variant="SE"
model-year="2016"
body-type="hatchback"
used="0"
engine-type="diesel"
per-page="10"
locale="en-GB"
></reevoo-embeddable>
Configurable Attributes
Reevoo Widgets supports the following list of attributes
Updated over 2 years ago