Embeddable widgets to boost conversions
Classic "X just signed up" notification in the corner
Your page content goes here
Notification appears in bottom-right corner
Embed code (add before
):
<script src="https://ecommerceopssuite.com/widgets/social-proof.js"></script>
For pages with CTAs on the right side
Your page content goes here
Notification appears in bottom-left corner
Persistent bar showing recent signups
Your page content goes here
Notification bar fixed at top
Embed within your content to boost credibility
Sarah C. from Seattle just enabled price drop alerts
Marcus J. from Austin enabled competitor tracking 3 minutes ago
Multiple notifications appearing sequentially
Emily P. just started a free trial
8 minutes ago
Your page content goes here
Multiple notifications stacked
Add this before the closing tag:
<script>
window.EcommerceOpsSuite = {
widget: 'social-proof',
position: 'bottom-right', // bottom-right | bottom-left | top
theme: 'light', // light | dark | gradient
showInterval: 15000, // 15 seconds
messages: [
'just started a free trial',
'enabled competitor tracking',
'enabled price drop alerts',
'upgraded to Pro',
'saved their first competitor analysis'
]
};
</script>
<script src="https://ecommerceopssuite.com/widgets/social-proof.js"></script>
Track actual signups to show real notifications:
// After successful signup:
window.EcommerceOpsSuite = window.EcommerceOpsSuite || {};
window.EcommerceOpsSuite.track = function(event, data) {
fetch('https://api.ecommerceopssuite.com/track', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ event, data, timestamp: Date.now() })
});
};
// Usage:
window.EcommerceOpsSuite.track('signup', {
email: 'user@example.com',
plan: 'trial'
});