Removing unwanted duplicate review stars from product page

Hi

I just removed a reviews app I was testing out. After deleting the app I now have a second set of unwanted product ratings alongside those from the original app I am using.

I would be grateful if someone could advise me as to how I can remove them from the page. The page is linked below.

Capture.JPG

Hi @Rees
To hide the star review.
You can try follow this path:
Themes => edit code => asset => section-main-product.css
and add this code to bottom of the file section-main-product.css

.product__info-container > .rating,
.product__info-container > .rating-count {
display: none!important
}
2 Likes

Thank you! That worked.

I have also just noticed they are appearing on the collection page. Do I resolve that issue in a similar way?

Hi @Rees
You can try follow this path:
Themes => edit code => asset => component-card.css
and add this code to bottom of the file component-card..css

.card-information > .rating,
.card-information > .rating-count {
display: none!important
}
2 Likes

Thanks, much appreciated. All sorted now.

Hi @Rees ,

You can do that by going to Online store > Themes > Customize > click drop down menu at the top > Products > Default product > in left menu > Product information > hover on Product rating, click on eye icon to hide it

Hope it can help

1 Like

Worked for me too!!! thanks

Can you give a solution for the same problem but for refresh theme?