How can I remove the second set of review stars from my product pages?

Hello we have this issue, we have 2 set of review stars / rating stars and we do not find where to remove one of the,
we do only want the first one to be shown.

this goes for several products, seems to be related to stock status, or maybe its just random

https://www.remlagret.se/products/kardborreband-5x100cm-svart

Hi @emilbrandon !
You can try the following steps:

1- In themeOnline StoreActionEdit code

2- Go to the Asstes → find theme.css / theme.scss file
3- Paste the following code at the bottom of the file:

.product__rating.rating {
    display: none;
}

This will remove the second rating block

Worked as a charm, thank you!!

1 Like