<aside> 💡 Go to the app store to install DS Reviews for Shopify.

</aside>

After you've installed the DS Reviews app, you can add review forms to your product pages, and review score badges to your product and collection pages.

Add reviews and a review form to your product page

  1. From your Shopify admin, go to Online Store > Themes.
  2. Find the theme you want to edit, and then click Actions > Edit code.
  3. In the Sections directory, open product-template.liquid.
  4. Find the area in the code where you want your reviews to appear. Usually, this is below the product description. To find your product description in the file, search for the {{ product.description }} Liquid tag.
  5. Below the code that contains the {{ product.description }} Liquid tag, paste the following snippet:
{% include 'get-reviews-reviews-box' %}

Your code placement might look something like this:

<div class="product-single__description rte">
  {{ product.description }}
</div>

{% include 'get-reviews-reviews-box' %}
  1. Click Save.

Add review score badges to your collection pages

  1. From your Shopify admin go to Online Store > Themes.

  2. Find the theme that you want to edit, and then click Actions > Edit code.

  3. In the Snippets directory, open product-grid-item.liquid file.

    In some themes, this file has a different name. If you cannot find product-grid-item.liquid, then look for one of the following:

  4. Find the area in the code where you want your review score badges to appear. Usually, this is somewhere below the product title. To find your product title in the file, search for the {{ product.title }} Liquid tag.

  5. On a new line below the code that contains the {{ product.title }} Liquid tag, paste the following snippet: