Adding reviews to Shopify is a great way to increase customer confidence and boost sales. Here’s how to do it:
1. Enable product reviews in your Shopify admin
In your Shopify admin, go to Settings > Checkout. In the Order processing section, check the box next to Allow customers to leave reviews on products. Save your changes.
Note: If you’re using the Shopify Enterprise plan, then you can also control whether product reviews are automatically published or held for moderation.
First, make sure that the reviews you’re adding are high-quality and relevant to your products. Adding irrelevant or low-quality reviews can actually hurt your conversion rates.
Second, be sure to moderate your reviews before they’re published on your store. This will ensure that only the best reviews are displayed, and that any inappropriate or offensive content is removed.
Finally, keep an eye on your conversion rates after adding reviews to your store. If you see a significant drop in conversion rates, it’s possible that the reviews you’re adding are hurting more than they’re helping. In this case, you may want to consider removing the reviews from your store.
2. Add a review form to your product pages
Next, you need to add a review form to your product pages. To do this, open the theme.liquid file from the Layout directory in the Template Editor. Find the {{ product.metafields.spr.reviews }}
Liquid tag and replace it with the following code:
{% if product.reviews_enabled %}
<div class="spr-reviews" data-id="{{product.id}}"></div>
<script type="text/javascript" src="//app.shopifyrefunds.com/assets/v4/spr.js"></script>
{% endif %}
Note: If you’re using a theme that was created by Shopify, then you don’t need to edit your theme code.
If you want, you can add review stars next to your products’ prices on your product pages.
To do this, open the theme.liquid file from the Layout directory in the Template Editor.