How to remove star rating and review section on Product Page in Sense Theme

Hello,

my site is showing a star rating and review section on the live site, even though it hasn’t been added in the theme. Please advise on how to remove them while still allowing other review apps to function.

website is lyylus.com

Please add below css code at bottom of assets/base.css file

.rivo-reviews-star-rating {
display: none;
}
.product__info-container p.rating-text.caption {
display: none;
}

.product__info-container p.rating-count.caption {
display: none;

}

Thank you.

@lyylus you need to remove below code which’s coming from js file

Hello @lyylus

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

.rivo-reviews-star-rating {
    display: none !important;
}
div#panel-container {
    display: none !important;
}

Hi @lyylus

I hope you are doing good and welcome to the Shopify Community!
I am San from MS Web Designer.

Please add this css in your bottom of the css file:

.rivo-reviews-star-rating, .rivo-reviews-iframe-panel-wrapper {display: none !important}

Regards,

San

what js file?

worked for the star reviews. thank you. But did not work for the review section at the bottom. Any solution?

Please add below css code at bottom of assets/base.css file

.jdgm-row-rating {
display: none;

}
Thank you.

Go to the Online Store->Theme->Edit code->Assets->stylesheet.css

Add this code at the bottom.

#rivo-reviews-panel {
display: none !important;
}

Hi.
I have got same problem, so was in search how to fix it. Changes in base.css will just hide it, but not remove.
For removing it you should type in search bar ‘boost’ and you will see one .js file with Rivo scripts.

If it helps you, please check our store :heart: doublehitshop.com :heart:

@lyylus find the code into theme.liquid file which you added for the review removed it.

Hi,

I want to delete the star rating from the announcement bar. My store is partinus.com

Could you help?

Thanks!!!