Customizing Widget Appearance
Updated 2026-02-17
The Sociable Reviews widget includes a footer that reads “Powered by Sociable Reviews”. You can hide this footer or customize other widget elements using CSS.
Hiding the Widget Footer
To hide the “Powered by Sociable Reviews” footer, add the following CSS:
.sociable-widget-footer { display: none !important; }
Hiding Other Widget Elements
Hide Review Source Labels
To hide the “via Google” / “via Facebook” / “via Trustpilot” text on each review:
.sociable-review-source { display: none !important; }
Hide “Read More” Links
To hide the links to original reviews on each platform:
.sociable-read-more-container { display: none !important; }
Hide Review Dates
`.sociable-review-date {
display: none !important;
}`
Hide Reviewer Avatars
`.sociable-reviewer-image {
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.
Adjusting Spacing
After hiding elements, you may want to adjust spacing:
`/* Reduce top padding after hiding elements */ .sociable-reviews { padding-top: 10px !important; }
/* Adjust review card padding */ .sociable-review-card { padding: 12px !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