Hiding Ratings
Updated 2026-02-17
You can customize your Sociable Reviews widget by hiding star ratings using custom CSS. This guide shows you how.
Why Hide Ratings?
- You want to focus on the text content of reviews rather than numerical scores.
- Your brand aesthetic favors a cleaner, more minimal look.
- You want to emphasize the review message over the rating.
CSS to Hide Ratings
Add the following CSS to hide all star ratings and Facebook recommendation indicators:
.sociable-review-stars { display: none !important; } .sociable-review-recommends { display: none !important; }
How to Add Custom CSS
Method 1: Shopify Theme Customizer
- Go to Online Store → Themes → Customize.
- Navigate to the page containing your Sociable Reviews block.
- Click on the Sociable Reviews block in the sidebar.
- If your theme supports a Custom CSS field for the block, paste the CSS there.
- Click Save.
Method 2: Theme Code Editor
- Go to Online Store → Themes.
- Click Actions → Edit code.
- Open your theme’s CSS file (commonly
assets/base.cssorassets/theme.css). - Add the CSS at the end of the file.
- Click Save.
Selective Hiding
Hide Only Star Ratings (Keep Facebook Recommendations)
`.sociable-review-stars {
display: none !important;
}`
Hide Only Facebook Recommendations (Keep Stars)
`.sociable-review-recommends {
display: none !important;
}`
Hide Ratings for a Specific Source
`/* Hide only Google star ratings */
.sociable-review-google .sociable-review-stars {
display: none !important;
}
/* Hide only Trustpilot star ratings */
.sociable-review-trustpilot .sociable-review-stars {
display: none !important;
}`
Troubleshooting
- Clear your browser cache and reload the page after adding CSS.
- Make sure you are editing the active theme.
- If styles are not applying, ensure you have included
!importantin your CSS rules.
If you need help with CSS changes, contact us at support@soviapps.com.
Related Articles
Still need help? Contact our support team