Product reviws placement

Show More

Hi I want to place my reviews from all my products under my product title and not at the end of the product how can I do that?

Hey @Odino

Thanks for the question and you have the German community. But we can also chat in English, that’s no problem!

To modify the location of your product reviews on your Shopify site, you will need to manually change your theme’s HTML/CSS code. Before making any changes, remember to Backup your theme. Changes to your theme code can exclude your theme from the theme updates and can also slow down your page loading times.

Here is the general process if you are using our native Product Reviews app:

  1. Locate the reviews code: You can find this in the Product Reviews app instructions for your current theme. If you’ve already installed Product Reviews, you may have inserted something like this in your product-template.liquid:
{% include 'product-reviews' %}

Relocate the reviews code: Decide where you’d like your reviews to appear (i.e., below your product title). This will also be in the product-template.liquid file, or possibly in the product.liquid file, depending on your theme. Find your product title code—it might look something like this:

# {{ product.title }}

After identifying this line of code, place the reviews code directly below it and save your changes:

# {{ product.title }}
{% include 'product-reviews' %}

If you have any further questions on that, pleasedirect them to an expert who can take a :eyes: into your theme code.

Hope that helps! :wink: