Framer
Track visits, custom events, errors, and performance on your Framer site. Databuddy uses browser storage instead of analytics cookies; review your privacy and consent configuration before enabling collection.
Installation Methods
Option 1: Framer Plugin (Recommended)
The easiest way to add Databuddy to your Framer site is through our official plugin:
Install the Plugin
Configure Settings
Publish Your Site
Click Publish to make your changes live.
Plugin Benefits:
Option 2: Manual Installation
If you prefer manual control or need custom configuration:
Get Your Tracking Script
Navigate to your Databuddy dashboard and copy your tracking code snippet:
<script>
(function () {
var script = document.createElement("script");
script.async = true;
script.src = "https://cdn.databuddy.cc/databuddy.js";
script.crossOrigin = "anonymous";
script.setAttribute("data-client-id", "YOUR_CLIENT_ID");
script.setAttribute("data-track-attributes", "true");
script.setAttribute("data-track-errors", "true");
document.head.appendChild(script);
})();
</script>Add the Script to Your Framer Project
Verify Installation
Once published, you can verify that Databuddy is working by:
Advanced Features
Custom Event Tracking
With data-track-attributes="true" enabled, track clicks using data attributes:
<!-- Track button clicks -->
<button data-track="cta_clicked" data-button-type="primary">Get Started</button>Performance Monitoring
Replace your existing manual script with this configuration to enable performance tracking. Install the tracker once:
<script>
(function () {
var script = document.createElement("script");
script.async = true;
script.src = "https://cdn.databuddy.cc/databuddy.js";
script.crossOrigin = "anonymous";
script.setAttribute("data-client-id", "YOUR_CLIENT_ID");
script.setAttribute("data-track-web-vitals", "true");
script.setAttribute("data-track-errors", "true");
document.head.appendChild(script);
})();
</script>Benefits for Framer Sites
Troubleshooting
Plugin Issues
Script Not Loading
Data Not Appearing
Related Integrations
Need help? Contact our support team at support@databuddy.cc.
How is this guide?