Hey,
Im using the theme Be Yours.
When a product has zero reviews its shows 1 star in the review stars, how can I put in a rule where if a product has zero stars it shows zero stars vs 1.
Hey,
Im using the theme Be Yours.
When a product has zero reviews its shows 1 star in the review stars, how can I put in a rule where if a product has zero stars it shows zero stars vs 1.
Hi,
Hope this will help
-Find review stars code and Check the start rating code
-Only show stars if the number of reviews is more than 0.
Code example
{% if product.metafields.reviews.rating_count > 0 %}
  
   (or your star rendering code)
{% else %}
  
  No reviews yet
{% endif %}
Thank you for getting back to me, unfortunately that didnt work but I found another solution.
Hi @PeterB_1 ,
I checked and it shows fine, did you solve it?
Hey,
Yes, I ended up using ChatGPT to find the solution and edit the required code