Review
The review object describes a product review, including content, rating, and author.
{%- comment -%} List product reviews {%- endcomment -%}
{% for review in product.reviews %}
<review rating="{{ review.rating }}">{{ review.title }}: {{ review.review }}</review>
{% endfor %}id
Returns the id.
name
Returns the name of the reviewer.
customer
Returns the customer or null.
title
Returns the title.
review
Returns the review.
rating
Returns the rating.
max_rating
Returns the maximum rating value.
created_at
Returns the date when this review was created.
updated_at
Returns the date when this review was updated.