All Collections
Publishing
Use "tag" or "branch" option within Widgets
Use "tag" or "branch" option within Widgets

Filter Reviews by 'Tags' for publishing onsite

Tom Goodwin avatar
Written by Tom Goodwin
Updated this week

Our widgets have a “tag” or "branch" option, allowing you to only show reviews matching your chosen tag or branch.

Requirements

⭐️ Professional plan & above.

Navigation

  • Log in to your REVIEWS.io account

  • Navigate to Publishing >> Widget Library

  • Select the widget you wish to use.

Our latest widgets include the option to add the branch or tag using the widget settings on the left-hand side.

  • Select General Settings on the left-hand side

  • Type in the specific branch or tag that you wish to use.

If you are using one of our other widgets you are still able to pull the reviews through using the HTML code.

HTML Code - tag

The below code generates a widget that only displays reviews tagged
“favourite”.

This would need to be added before the closing body tag of the widget:

  tag: 'favourite',

For example:

<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

The below code generates a widget that only displays reviews with the branch
“London”.

This would need to be added before the closing body tag of the widget:

  branch: 'london',

For Example:

<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>

FAQs

How do I set up branches?

You are able to set up branches Manually & Automatically please see the articles below.

How do I set up tags?

We do offer automated tagging, you can see the details on this below:

Did this answer your question?