Carrd
Integrate Rybbit Analytics with your Carrd site
Carrd is a popular platform for building simple, responsive one-page sites. You can add Rybbit Analytics to track visitors on your Carrd site.
Adding custom code requires a Carrd Pro subscription (Pro Standard, Pro Plus, or Pro Max).
How to Add Rybbit to Carrd
Open Your Site Settings
- Log in to Carrd and open your site in the editor
- Click on the Settings icon (gear) in the top right
- Select the Settings tab
Add Head Code
- Scroll down to the Head section under "Embed Code"
- Paste the following code:
<script>
(function() {
var s = document.createElement('script');
s.src = 'https://app.rybbit.io/api/script.js';
s.defer = true;
s.setAttribute('data-site-id', 'YOUR_SITE_ID');
document.head.appendChild(s);
})();
</script>Replace YOUR_SITE_ID with your actual Site ID from your Rybbit dashboard.
Publish Your Site
Click Save then Publish to apply the changes to your live site.
We use the JavaScript approach instead of a plain script tag because some site builders may strip data-* attributes during processing.
Using Multiple Pages
If your Carrd site has multiple pages (Pro Plus or Pro Max feature), the tracking script in the head code will automatically load on all pages.
Troubleshooting
Script not working
- Make sure you have a Carrd Pro subscription
- Ensure you published the site after adding the code
- Check "View Page Source" on your live site and search for
rybbit
Form submissions
To track form submissions as events, you can add a custom event using Carrd's form settings or by adding additional JavaScript in the embed code section.