Website Builders & No-Code CMS
Installing Scoby Analytics on Carrd
Like all Scoby integrations, this lightweight, client-side integration is carefully designed to prioritize visitor privacy. It fully complies with EU ePrivacy and GDPR regulations, while enabling you to exercise your legitimate interest in understanding how your website is being used.
Prerequisites
- A Scoby Analytics Workspace
- Your Workspace ID
- A Carrd account on Pro Standard or Pro Plus
Installation Guide
Follow the steps below to anonymously count page views and (optionally) conversions such as purchases, sign ups or form submissions.
Logging Page Views
- Open your Carrd editor for the site you want to analyze.
Click Add Element → Embed.
*In the Embed settings:- Set Type to Code.
- Set Code to the Scoby Analytics snippet (shown below).
Choose Style → Hidden so the embed doesn’t disrupt the layout.
Under Placement, choose Head (to put it in
<head>
).Publish your site so the embed becomes active.
In the Code field, paste:
<script>
(function () {
const workspaceId = "<WORKSPACE_ID>";
window.scoby = window.scoby || function () {
(window.scoby.q = window.scoby.q || []).push(arguments);
};
const script = document.createElement('script');
script.src = `https://${workspaceId}.s3y.io`;
document.head.append(script);
})();
</script>
Be sure to replace <WORKSPACE_ID>
with your real workspace ID.
After publishing, all pages will send anonymous pageviews to Scoby.
Logging Conversions
Because Carrd doesn’t natively allow JavaScript execution after form submissions, here are a couple of workarounds:
Thank You Page Redirect
If your form redirects to a dedicated “Thank You” page:
Edit that page in Carrd.
Add an Embed → Hidden → Body End element there.
Paste:
<script> window.scoby('logConversion', { goal: 'Sign-Up' }); </script>
Publish.
This way, when users land on the Thank You page, it triggers a conversion.
Redirect to External Page
If your form submits to an external URL:
- Add the conversion snippet to that external page using the same approach (Embed / head or body placement) and methods appropriate there.