Go to the Online Store->Theme->Edit code->Assets->stylesheet.css
Add this code at the bottom.
#rivo-reviews-panel {
display: none !important;
}
A user is experiencing unwanted star ratings and review sections appearing on their product pages in the Sense theme, despite not adding them intentionally. Multiple solutions are proposed:
Primary Solutions:
assets/base.css to hide the review elements using display: none targeting classes like .rivo-reviews-star-rating and .product__info-containerKey Issue:
The original poster reports that CSS solutions successfully hide the star ratings but don’t remove the review section at the bottom of the page.
Root Cause Identified:
One contributor explains that CSS only hides elements rather than removing them. The actual solution requires locating and removing code from JavaScript files (specifically Rivo scripts) in the theme.liquid file.
Status:
The discussion remains partially resolved - star ratings are hidden but the review section persists. A related question about removing ratings from the announcement bar is also raised at the end.
Go to the Online Store->Theme->Edit code->Assets->stylesheet.css
Add this code at the bottom.
#rivo-reviews-panel {
display: none !important;
}