Product reviews are important in E-commerce because they allow shoppers to leave a comment about their buying and using experiences. Besides, customers often believe that a good product is one that has many positive reviews. So product reviews have a huge impact on purchasing. In this article, we will show you how to integrate app reviews into your theme.

You need to install the app review that you want to use, then contact the app's support first to get the snippet code. You will follow the instructions of the app and theme to integrate it. Currently, our themes support these apps below:
Shopify reviews install here
Ryviu app install here
Alireviews app install here
Loox photo reviews install here
Growave reviews install here
LAI product aliExpress reviews install here
Judge.me reviews install here
However, if the app you want to use is not one of the apps above, please install the app and select Other app.
This is the guideline to help you can show the review app.
Step 1:
You need to click Theme settings > App Embeds > Enable the app review.

Step 2:
Please click Theme settings > General Product > Reviews >Tick on the check box app review that you use.

Step 3:
Each app has a different snippet code, you need to contact the support app to ask for the embed code.
3.1. Product review on product grid of the Homepage and Collection Page
You need to click edit code, then find the "review_grid_other.liquid" and Add Snippets Liquid like the guideline. This is the example with Judge.me app review:
<!-- Start of Judge.me code -->
<div style='{{ jm_style }}' class='jdgm-widget jdgm-preview-badge' data-id='{{ product.id }}'>
{{ product.metafields.judgeme.badge }}
</div>
<!-- End of Judge.me code -->
3.2. Show review after product price on product page
You need to click on Product Price, review block > Enable Use Rating > Add Snippet Liquid.
Example: this is the embed code for Judge me rating:
<!-- Start of Judge.me code -->
<div style='{{ jm_style }}' class='jdgm-widget jdgm-preview-badge' data-id='{{ product.id }}'>
{{ product.metafields.judgeme.badge }}
</div>
<!-- End of Judge.me code -->

3.3. Show review on product tab
Please click on Tab Review > Add Snippets Liquid.
Example: this is the embed code for Judge me widget:
<!-- Start of Judge.me code -->
<div style='clear:both'></div>
<div id='judgeme_product_reviews' class='jdgm-widget jdgm-review-widget' data-id='{{ product.id }}'>
{{ product.metafields.judgeme.widget }}
</div>
<!-- End of Judge.me code -->
