Hi, I’m trying to put a box/and or text below the product name on the products page of a collection that shows the options of our star ratings of meat.
Shop URL: shop.meatonline.com.au
For example:
Placing a Divider or similar between the Text and Add to Cart button, and being able to add in some text that says “6 Star, 5 Star, 4 Star, 3 Star, 2 Star, 1 Star”
Then if available, being able to easily change this selection between the different star ratings for each product would be amazing too.
Either done through liquid, pages, CSS, or anyway?
Hi, @MeatOnline
Can you share the store URL and take a screenshot to describe your requirements? So that I can assist you.
The store URL is shop.meatonline.com.au or 5b74e0.myshopify.com
I’m looking to put a box/and or text below the product name on the products page of a collection that shows the options of our star ratings of meat.
Placing a Divider or similar between the Text and Add to Cart button, and being able to add in some text that says “6 Star, 5 Star, 4 Star, 3 Star, 2 Star, 1 Star”
Then if available, being able to easily change this selection between the different star ratings for each product would be amazing too.
Either done through liquid, pages, CSS, or anyway?
@MeatOnline - from where will this ratings be fetched?
Either manually entered for each product through some way, or from a variant or even descriptions of the product.
@MeatOnline - it can be done by using a tag for your product, but it will need manually adding tag to EACH product and some custom code editing
I’m fine with using a tag for the product, actually makes it easier 
Just need help with the custom code to fit the spot in there, and preferably with a small divider
@MeatOnline - add this code after your title code and check
{% for t in product.tags %}
{% if t contains '1 star' %}
1 star
{% endif %}
{% if t contains '2 star' %}
2 star
{% endif %}
{% if t contains '3 star' %}
3 star
{% endif %}
{% if t contains '4 star' %}
4 star
{% endif %}
{% if t contains '5 star' %}
5 star
{% endif %}
{% endfor %}