Widgets
Our widgets have a “tag” or "branch" option, allowing you to only show reviews matching your chosen tag or branch.
The below code generates a widget that only displays reviews tagged
“favourite”.
HTML Code - tag
<div id="widget"></div>
<script type="text/javascript">
carouselWidget('widget', {
store: 'your-account-key',
tag: 'favourite',
primaryClr: '#12CF6C',
neutralClr: '#EBEBEB',
buttonClr: '#eee',
reviewTextClr: '#fff',
layout: 'fullWidth'
});
</script>
HTML Code - branch
<div id="widget"></div>
<script type="text/javascript">
carouselWidget('widget', {
store: 'your-account-key',
branch: 'london',
primaryClr: '#12CF6C',
neutralClr: '#EBEBEB',
buttonClr: '#eee',
reviewTextClr: '#fff',
layout: 'fullWidth'
});
</script>