Select each step below to view the instructions.
Duplicate themes, to create a backup copy.
From Shopify's admin, select Online Store.
Select Actions
Select Edit code
Under "Snippets", find these nine files:
For any that don't exist:
Select Add a new snippet.
Enter the correct snippet name.
Select Create snippet.
Copy and paste the code found in each of these links into their respective files:
Click Save.
Repeat steps 6a – e for each missing snippet file.
From Shopify's admin, select Online Store.
Select Actions.
Select Edit code.
Under "Layout", select theme.liquid.
Copy and paste this code directly above the </head> tag:
{% include 'ri-assets' %}
Copy and paste this code at end of <body> tag just before >:
ng-app="ReviewsImportify" ng-controller="RIController"
Copy and paste this code directly above the </body> tag:
{% include 'ri-scripts' %}
Select Save.
From Shopify's admin, select Online Store.
Select Actions.
Select Edit code.
Under "Templates", select product.liquid.
Copy and paste this code to where you want the main reviews widget to display :
{% include 'ri-product-reviews', product:product %}
Note : This step controls where the main review widget to display. Most stores show the main review widget to display below product description.
Copy and paste this code to where you want the reviews count & stars to display (optional) :
{% include 'ri-rating-product' with product %}
Note : This step controls where the review count & stars to display. Most stores show the reviews count & stars below product title. This step is optional.
Copy and paste this code to where you want the qestions & answers widget to display :
{% include 'ri-product-questions', product:product %}
Note : This step controls where the qestions & answers widget to display. Most stores show the qestions & answers widget to display below product description.
Select Save.
From Shopify's admin, select Online Store.
Select Actions.
Select Edit code.
Under "Snippets", select product-card-grid.liquid.
Copy and paste this code to where you want the reviews count & stars to display :
{% include 'ri-rating' with product %}
Note : This step controls where the review count & stars to display. Most stores show the reviews count & stars below product title.
Select Save.
Select each step below to view the instructions.
From Shopify's admin, select Online Store.
Select Actions
Select Edit code
Under "Snippets", find these nine files and delete all:
From Shopify's admin, select Online Store.
Select Actions.
Select Edit code.
Under "Layout", select theme.liquid.
remove below code:
{% include 'ri-assets' %}
find and remove below attributes code:
ng-app="ReviewsImportify" ng-controller="RIController"
remove below snippet include code
{% include 'ri-scripts' %}
Select Save.
From Shopify's admin, select Online Store.
Select Actions.
Select Edit code.
Under "Templates", select product.liquid.
find below code and remove from file:
{% include 'ri-product-reviews', product:product %}
find below code and remove:
{% include 'ri-rating-product' with product %}
find below code and remove :
{% include 'ri-product-questions', product:product %}
Select Save.
From Shopify's admin, select Online Store.
Select Actions.
Select Edit code.
Under "Snippets", select product-card-grid.liquid.
find the below code and remove :
{% include 'ri-rating' with product %}
Select Save.