SocialProof.Reviews gives every workspace four embeddable testimonial widgets — a Wall of Love, Carousel, Rating Badge, and Collect Form. Each one is a lightweight <iframe> that loads your live, approved testimonials, uses your brand colors and logo, and updates automatically when you approve new reviews.
This guide covers:
| Widget | Embed size | Best placement |
|---|---|---|
| Wall of Love | Full-width, 800px+ tall | Dedicated /testimonials or /reviews page |
| Carousel | Full-width, 280–360px tall | Homepage hero, pricing page, landing page |
| Badge | 220×48px | Nav bar, footer, beside pricing plans |
| Collect Form | Full-width, 700px tall | Post-purchase page, thank-you page, dashboard |
All four widgets are served over HTTPS, load asynchronously (no impact on Core Web Vitals), and auto-update when you approve new testimonials — no re-embed required.
<iframe> snippet — it is unique to your workspaceA full masonry grid of all approved testimonials. Use it on a dedicated reviews or testimonials page.
Includes: reviewer name, photo, company, job title, star rating, review text, photos, video thumbnails, filter bar, brand colors, and an optional "Leave a review" CTA.
<iframe
src="https://socialproof.reviews/YOUR-SLUG/wall"
width="100%"
height="800px"
frameborder="0"
style="border:none; width:100%;"
title="Wall of Love"
></iframe>
<iframe
id="spr-wall"
src="https://socialproof.reviews/YOUR-SLUG/wall"
width="100%"
frameborder="0"
style="border:none; width:100%;"
title="Wall of Love"
onload="this.style.height = this.contentWindow.document.body.scrollHeight + 'px'"
></iframe>
An auto-rotating testimonial slider. Best for homepages, pricing pages, and landing pages where space is limited.
Includes: rotating testimonial slides, reviewer name, photo, company, star rating, review text, navigation dots and arrows, brand colors.
<iframe
src="https://socialproof.reviews/YOUR-SLUG/widgets/carousel"
width="100%"
height="280px"
frameborder="0"
style="border:none; width:100%;"
title="Customer Reviews"
></iframe>
Height tip: If your testimonials are long, increase to 320–360px. Default 280px fits a single card.
Placement tips:
A compact trust pill showing your aggregate star rating and review count. Designed for nav bars, footers, and beside pricing plans.
Includes: aggregate star rating (e.g., ★ 4.9), total review count, brand color accent, click-through to your full Wall of Love.
<iframe
src="https://socialproof.reviews/YOUR-SLUG/widgets/badge"
width="220px"
height="48px"
frameborder="0"
style="border:none;"
title="Rating Badge"
></iframe>
Placement tips:
Embeds your testimonial submission form directly on your site — no redirect to a separate page.
Includes: multi-step flow (rate → about you → review → optional video), brand colors and logo, email validation, photo upload, and optional reward display after submission.
<iframe
src="https://socialproof.reviews/YOUR-SLUG"
width="100%"
height="700px"
frameborder="0"
style="border:none; width:100%;"
title="Leave a Review"
></iframe>
Best placements:
SocialProof.Reviews widgets use a standard HTML <iframe> tag and work on every major website platform. The table below shows how to add a Custom HTML or Embed element on each platform — that is all that is required.
| Platform | Element to use |
|---|---|
| WordPress | Custom HTML block |
| Webflow | Embed component (Advanced) |
| Wix | Embed HTML (Embed & Social) |
| Squarespace | Code Block |
| Shopify | Edit Code (Themes) |
| Kajabi | Custom Code block |
| ClickFunnels 2.0 | Custom JS/HTML element (Misc) |
| Framer | Embed component (Utility) |
| Systeme.io | Raw HTML element (Advanced) |
| React / Next.js | <iframe> JSX element |
| Custom HTML | Paste directly into your HTML |
Recommended method — Custom HTML block (Gutenberg):
<iframe> snippet into the blockAlternative — Page builders:
Note: WordPress.com free and Personal plans restrict
<iframe>tags. You need the Business plan or higher, or use self-hosted WordPress.org.
<iframe> codeNote: Embedded content displays as a gray placeholder in the Designer. It renders correctly on the published live site.
<iframe> codeNote for Wix Studio: Use the + icon to add an HTML iFrame element — the steps are the same.
HTTPS required: The
srcURL in your iframe must usehttps://, nothttp://.
<iframe> codePlan requirement: Iframe support requires the Business, Commerce, or higher Squarespace plan. The
srcURL must use HTTPS.
page.liquid)<iframe> snippet in the appropriate section of the HTMLAlternative — Shopify page editor:
<> button)<iframe> code into the Code fieldTo center the widget, wrap in a div:
<div style="text-align:center;">
<iframe src="https://socialproof.reviews/YOUR-SLUG/widgets/carousel"
width="100%" height="280px" frameborder="0" style="border:none;"></iframe>
</div>
Note: If you are embedding a video testimonial separately, use Kajabi's dedicated Video Embed Block for better performance. For the SocialProof.Reviews wall or carousel, the Custom Code block is the right choice.
<iframe> code and close the editorIf the iframe appears too small, add explicit dimensions:
<iframe
src="https://socialproof.reviews/YOUR-SLUG/widgets/carousel"
style="width:100%; height:320px; border:none;"
frameborder="0"
title="Customer Reviews"
></iframe>
<iframe> snippet, orMobile sizing: Adjust the width and height of the Embed component manually to ensure correct display on smaller screens.
<iframe> code and click SaveSizing: Set
width="100%"and a fixed height (e.g.,height="300px") directly in the iframe tag for predictable layout.
Paste the widget as an <iframe> JSX element. Note that frameborder becomes frameBorder and style takes an object in JSX:
export default function TestimonialsSection() {
return (
<section>
<h2>What our customers say</h2>
<iframe
src="https://socialproof.reviews/your-slug/widgets/carousel"
width="100%"
height="300"
frameBorder="0"
title="Customer Reviews"
style={{ border: 'none', width: '100%' }}
/>
</section>
);
}
For the Wall of Love in Next.js (App Router):
// app/testimonials/page.jsx
export default function TestimonialsPage() {
return (
<main>
<h1>Customer Testimonials</h1>
<iframe
src="https://socialproof.reviews/your-slug/wall"
width="100%"
height="900"
frameBorder="0"
title="Wall of Love"
style={{ border: 'none', width: '100%' }}
/>
</main>
);
}
Paste the iframe directly into any HTML file or template where you want the widget to appear:
<!-- Carousel widget -->
<iframe
src="https://socialproof.reviews/YOUR-SLUG/widgets/carousel"
width="100%"
height="280px"
frameborder="0"
style="border:none; width:100%;"
title="Customer Reviews"
></iframe>
Replace YOUR-SLUG with your workspace slug. The widget loads asynchronously and does not block page rendering.
All widgets inherit your workspace branding automatically. To change colors, logo, headlines, or toggle sections:
See the Branding guide for full details.
All SocialProof.Reviews widgets:
width="100%"Do I need a developer to embed the widgets? No. Every platform listed above supports pasting HTML without writing code. You need access to your website's page editor, nothing more.
Which Squarespace plan do I need to embed iframes? You need the Business, Commerce Basic, or Commerce Advanced plan. Iframe embeds are not available on the Personal or Starter plans.
Does the widget slow down my website?
No. The <iframe> loads asynchronously in a separate browser context and does not block your page's critical rendering path or affect your Core Web Vitals score.
Why is the iframe showing a gray box instead of the widget? In Webflow's Designer view and Framer's preview mode, iframes render as placeholders. Publish the site and view the live URL — the widget will display correctly.
Can I embed the widget in an email?
Email clients block iframes for security. Instead, link to your Wall of Love URL directly in the email. For post-purchase sequences, linking to https://socialproof.reviews/YOUR-SLUG (the Collect Form) typically performs better anyway.
What happens when I approve a new testimonial — do I need to re-embed? No. The widget fetches live data from SocialProof.Reviews every time it loads. Approve a testimonial in your dashboard and it appears in the widget automatically.
Does WordPress.com allow iframes? Self-hosted WordPress.org: yes, always. WordPress.com: iframes require the Business plan or higher. On lower plans, the Custom HTML block strips the iframe tag.
Why is the Kajabi widget not displaying?
The most common cause is an HTTP source URL. Ensure your iframe src starts with https://. Also confirm you used the Custom Code block (not the text editor), as the rich text editor in Kajabi strips raw HTML.
Can I embed the Collect Form inside a ClickFunnels funnel step?
Yes. Use the Custom JS/HTML element (Misc section) in ClickFunnels 2.0, paste the Collect Form iframe code, and set height to at least 700px to prevent the form from appearing clipped.