I am trying to display woocommerce products in loop, while doing this I noticed that the product review is displayed in textual format like “4.5 out of 5”, but I am looking for a star type display
And I am not sure if this is due to my theme, I googled but could not get proper suggesstions on this.
Post Views: 1
Your star-rating span is set to a text font. Change that in the following file: plugins/woocommerce/assets/css/woocommerce.css:
The class .star-rating is wrapped inside the class .woocommerce. That being said, in order for you to display the stars instead of the actual average in text, you need to add the class .woocommerce to any of the parents of your .star-rating.
You can see the css in plugins/woocommerce/assets/css/woocommerce.scss
Add this code to get the rating in your loop and wrap the loop with the class .woocommerce.
Example