Skip to main content
All CollectionsFeaturesDisplay Reviews
Manually Adding the Review List Widget Using Snippet Code
Manually Adding the Review List Widget Using Snippet Code
Andy Collins avatar
Written by Andy Collins
Updated over a week ago

If you're experiencing compatibility issues with some themes, manually adding the Audien app block might be the solution.

How to add the Audien widget block through the Shopify theme editor

1. Navigate to Display Review > Widgets and click the 'Add widget manually' button.

2. Copy the code provided in the popup.

3. Go to Shopify Admin > Online Stores > Themes > Edit code.

4. Locate the page where you want to add the widget.

5. Paste the copied code wherever you'd like the widget to appear.

Customize the review data using the 'data-product-id' variable in the snippet code

1. To display all reviews, set the variable to 'all':

<div id="audienReviews" data-product-id="all" class="audien-reviews-default"></div>

2. To display featured reviews, set the variable to 'featured':

<div id="audienReviews" data-product-id="featured" class="audien-reviews-default"></div>

3. To display reviews from a specific product, set the variable to the product ID (e.g., product ID is 1234567):

<div id="audienReviews" data-product-id="1234567" class="audien-reviews-default"></div>

4. To display reviews from the product on the current page (e.g., product page), set the variable to '{{product.id}}':

<div id="audienReviews" data-product-id="{{product.id}}" class="audien-reviews-default"></div>

Did this answer your question?