I am trying to add the code for review stars, Id like it to come up under the price but I am not sure how to add it.
This is the example of where it should go.
Where would I add it in here?
<div class="price-box">
{% if on_sale %}
<div class="price-sale">
{% if settings.enable_quick_shop %}
<span class="old-price" data-compare-price-grid>{{ product.variants[0].compare_at_price | money }}</span>
<span class="special-price" data-price-grid>{{ product.variants[0].price | money }}</span>
{% else %}
<span class="old-price" >{{ product.compare_at_price_min | money }}</span>
<span class="special-price">
{% if product.price_varies %}{% render 'varies_from' %}{% endif %}{{ product.price_min | money }}
</span>
{% endif %}
</div>
{% else %}
{% if settings.enable_quick_shop %}
<div class="price-regular">
<span data-price-grid>{{ product.variants[0].price | money }}</span>
</div>
{% else %}
<div class="price-regular">
<span>{% if product.price_varies %}{% render 'varies_from' %}{% endif %}{{ product.price_min | money }}</span>
</div>
{% endif %}
{% endif %}
</div>
User | RANK |
---|---|
37 | |
36 | |
17 | |
13 | |
9 |