How To Install Junip Reviews for Collections on Sense Theme

I’m looking for help adding Junip Reviews to My Collections in the Sense Theme. My reviews show on individual product pages but not in collections such as on my homepage and “shop all”. The videos online seem to not pertain my specific theme. I would like to add the stars below the name of the product and above the price.

Hi,

You need to edit the Collection Template (something similar collection.liquid)

Code example

{% for product in collection.products %}
  
    ## {{ product.title }}
    {% if product.metafields.junip %}
      
        {{ product.metafields.junip.review_stars | raw }}
      

    {% endif %}
    

{{ product.price | money }}

  

{% endfor %}

Use CSS for styling.

Can you please share your store URL ?