Showing a product's star rating in category page

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
6 年 前
Hello,

I can't for the life of me figure out how to show a product's average rating in category view.

I'm not sure if my predecessor removed it or if it's our current theme.

Does anyone know what the call is to show this if it's native to nopcommerce?

Thank you.
6 年 前
Could you please provide your online store link?
6 年 前
Hello,

thanks for the reply, our store is:
https://www.jennifertaylorhome.com/sofas
6 年 前
I had a look in your site, and found that



Remove this line of CSS code

display:none;


in order to show rating.
6 年 前
Vuffy wrote:
Hello,

I can't for the life of me figure out how to show a product's average rating in category view.

I'm not sure if my predecessor removed it or if it's our current theme.

Does anyone know what the call is to show this if it's native to nopcommerce?

Thank you.


Add this in your theme custom head style:

.product-review-item .review-info .user,
.product-review-item .review-info .date {
font-size:13px;
}

.item-box .product-rating-box {
display: block;
}
6 年 前
Perfect, thank you so much to both of you. I didn't think to look in the css, I thought it was removed from the template files.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.