+
{{ product.name | raw }}
+ {% if store.is_product_reviews_enabled %}
+
+ {% if product.rating %}
+ {% include 'rating-stars.twig' with {'rating' : product.rating.average } %}
+ ({{ product.rating.total_count }})
+ {% endif %}
- {% else %}
-
{{ product.formatted_price }}
{% endif %}
+
+
+ {% if product.formatted_sale_price is not null %}
+
+
{{ product.formatted_sale_price }}
+
{{ product.formatted_price }}
+
+ {{ locals.product_discount }} {{ product.discount_percentage }}%
+
+
+
+ {% else %}
+
{{ product.formatted_price }}
+ {% endif %}
+ {% if product.is_infinite or product.quantity > 0 %}
- {% if product.is_infinite or product.quantity > 0 %}
+ {% if (product.has_options or product.has_fields) %}
+
{{ locals.product_has_options }}
+ {% endif %}
- {% if (product.has_options or product.has_fields) %}
-
{{ locals.product_has_options }}
- {% endif %}
+ {% if not product.is_taxable %}
+
{{ locals.product_is_not_taxable }}
+ {% endif %}
- {% if not product.is_taxable %}
-
{{ locals.product_is_not_taxable }}
{% endif %}
- {% endif %}
- {% if product.is_infinite == false and product.quantity <= 0 %}
-
{{ locals.lbl_error_product_out_of_stock }}
- {% endif %}
+ {% if product.is_infinite == false and product.quantity <= 0 %}
+
{{ locals.lbl_error_product_out_of_stock }}
+ {% endif %}
-
-
+