Installing the Konversion theme and setting up the Loox Photo Reviews for the first time
When you install the Konversion theme, like any other theme, you need to reinstall some apps. We made your life easier by integrating all the scripts needed in all the theme files for the
Loox Photo Reviews app.
1. Install the Loox Photo Reviews app.
2. Go in Themes > Customize theme > General Settings > Apps
3. Enable the Loox Photo Reviews app.
4. Remove this code automatically added by the app at the very bottom of the product.template file
If you don't remove this snippet of code above, the Loox Photo Reviews widget will be displayed at the very bottom of the product page, instead of inside the Reviews tab. Like this:
Switching to the Konversion theme with the Loox Photo Reviews app already installed on your previous theme
If you already have the app installed on another theme and you're switching to the Konversion theme, you can take the easy way or the hard way.
Easy Way - Uninstall the app and reinstall it
Simply do the steps explained above.
Hard Way - Keep the app install and put the required snippet of codes missing
1. Add the following snippets of code in the theme.liquid file
Add this code just top of </head> tag
- {{ shop.metafields.loox["global_html_head"] }}
Add this code just top of </body> tag
- {{ shop.metafields.loox["global_html_body"] }}
2. Add the following snippets of code at the bottom of product.template file
- {% if product.metafields.loox.num_reviews %}
- <script id="looxSchemaJson" type="application/ld+json">
- {
- "@context": "http://schema.org",
- "@type": "Product",
- "aggregateRating": {
- "@type": "AggregateRating",
- "ratingValue": "{{ product.metafields.loox.avg_rating }}",
- "reviewCount": "{{ product.metafields.loox.num_reviews }}"
- },
- "name": "{{ product.title }}"
- }
- </script>
- {% endif %}
3. Go in Themes > Customize theme > General Settings > Apps and Enable the Loox Photo Reviews app