Upon installation, Editorify automatically integrates with your published theme. If the Editorify widget is not visible on the product page, clear your cookies/cache and refresh the webpage; if the Product Reviews are still not visible, don't hesitate to reach out to our Support team at support@editorify.com, and we'll be happy to assist you.
Automatic integration
To integrate Editorify with a specific theme follow the steps below:
Visit the Editorify admin dashboard
Go to the General Settings
Choose the theme that you'd like to integrate and click the "Integrate" button
Manual integration
For manual integration of the Editorify widget on your product pages, proceed with these guidelines:
Review Comments
Go to your Online store -> Themes -> Find the Theme that you want to add code -> Action -> Edit Code.
Open product.liquid file in Templates file in Sections folder then copy the code below and paste it right after this code {% section 'product-template' %} (check the image below)
{% include 'editorify_widget' %}
Star Rating on Product Page (below product title)
Go to your Online store -> Themes -> Find the Theme that you want to add code -> Action -> Edit Code.
Open product-template.liquid or product.liquid file in Sections folder then search:
{{ product.title }}
3. Copy the code below and paste it below the {{ product.title }}
{% include 'editorify_widget', bellow_title:true %}
Star Rating on Collection Page
Go to your Online store -> Themes -> Find the Theme that you want to add code -> Action -> Edit Code.
To inject the Stars rating to the Collection page you need to find the exact file to inject the code, each theme has different name file for it, Open product-card-grid.liquid or product-card.liquid or product-grid-item.liquid or product-thumbnail.liquid or product-info.liquid file in Snippets and search for:
{{ product.title }}
3. Copy the code below and paste it below the
{{ product.title }}
{% include 'editorify_widget', collection_page:true %}