Tabbed Reviews
Overview
Our Tabbed Reviews widget allows any combination of Product reviews, Brand reviews and Ask An Owner questions and answers together in a tab based display format.
Installation
- Include the Reevoo JavaScript library (only once per page)
- Add the
reevoo-embeddable
tag with `type="tabbed" - Specify Display Attributes if needed
- Specify Data Scope Attributes (at least
product-id
ormanufacturer
andmodel
must be specified) as needed
Examples
Tabbed Reviews
There are two ways to display Tabbed Reviews. 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="tabbed"
product-id="PRODUCT_ID"
per-page="10"
locale="en-GB"
></reevoo-embeddable>
<reevoo-embeddable
type="tabbed"
enabled-tabs="product"
product-id="SKU"
per-page="10"
locale="en-GB"
></reevoo-embeddable>
<reevoo-embeddable
type="tabbed"
enabled-tabs="product,brand"
product-id="SKU"
per-page="10"
locale="en-GB"
></reevoo-embeddable>
Tabbed Reviews for Automotive Partners
Our automotive partners who have Automotive Aggregation enabled can display the Tabbed 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="tabbed"
manufacturer="ford"
model="fiesta"
per-page="10"
></reevoo-embeddable>
<reevoo-embeddable
type="tabbed"
enabled-tabs="product"
manufacturer="ford"
model="fiesta"
per-page="10"
></reevoo-embeddable>
<reevoo-embeddable
type="tabbed"
enabled-tabs="product,brand"
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="tabbed"
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