Embedded Tabbed Reviews (Deprecated)
This documentation covers our pre August 2020 implementation. We strongly recommend upgrading to our latest JavaScript implementation to take advantage of performance improvements and additional features. Our migration guide can be found here.
Emebedded Tabbed Reviews is a composite tabbed interface containing tabs for the Product Reviews, Ask an Owner and Customer Experiences Reviews (or the subset of those items that you are using). Embedded Tabbed Reviews is only available in the updated display release and not in the older styling.

To display embedded tabbed reviews in your website you have to
- Include the Reevoomark Javascript library
- Include our embedded reviews CSS in your HTML header, using the HTML link below (only if you're using old version of tabbed reviews):
<link
rel="stylesheet"
href="//mark.reevoo.com/assets/embedded_reviews.css"
type="text/css"
/>
- Add the
reevoo-embedded-tabbed
tag with attributes. The attributes should be the same as for Embedded Product Reviews including the optional attributes for Automotive Partners.
Additionally the following optional attributes may be used:
tab
- this will open the required tab intitially. This attribute will take the follow values:
ask_an_owner
- will show the Ask an Owner tab.
retailer_reviews
- will show the Customer Experience tab.
null or blank i.e. ""
or any other value will show the Product Reviews tab
If the tab
attribute is changed by JavaScript after the content has loaded this will refresh the embedded content with that tab open. This allows you to have buttons on the page that open a different tab.
Examples
<reevoo-embedded-tabbed
trkref="TRKREF"
sku="SKU"
per-page="10"
tab="ask_an_owner"
></reevoo-embedded-tabbed>
<reevoo-embedded-tabbed
trkref="TRKREF"
sku="SKU"
per-page="10"
></reevoo-embedded-tabbed>
Examples for Automotive Partners
Minimal required attributes are trkref
, per-page
, manufacturer
and model
:
<reevoo-embedded-tabbed
trkref="TRKREF"
per-page="10"
manufacturer="ford"
model="fiesta"
></reevoo-embedded-tabbed>
<reevoo-embedded-tabbed
trkref="TRKREF"
per-page="10"
locale="en-GB"
manufacturer="ford"
model="fiesta"
model-variant="SE"
model-year="2016"
body-type="hatchback"
used="0"
engine-type="diesel"
tab="retailer_reviews"
></reevoo-embedded-tabbed>
Updated over 2 years ago