Website Builders & No-Code CMS
Installing Scoby Analytics on Tilda.cc
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
Before you begin, make sure you have:
- A Scoby Analytics Workspace
- Your Workspace ID
- A Tilda.cc Business or Personal plan (custom code is not available on the free plan)
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
- Log in to Tilda.cc and select your project.
- Click on Site Settings in the top navigation.
- In the left sidebar, click More → HTML code for the <head> tag.
Paste the following code into the HTML code for the head field.
Replace <WORKSPACE_ID>
with your actual Scoby Workspace ID.
<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>
- Click Save changes.
- Then Publish all pages to ensure the code is injected site-wide.
From this point on, Scoby Analytics will automatically log anonymous pageviews for every published page.
Logging Conversions
Tilda offers several ways to add custom code to individual pages or blocks — perfect for logging conversions (e.g. form submissions, purchases, sign-ups).
Thank You Page Method
The simplest method is to fire a conversion event on a dedicated Thank You page:
- Create or open your Thank You page in Tilda.
- Click Page Settings → Additional.
- Scroll to Custom HTML and paste:
<script>
window.scoby('logConversion', {
goal: 'Sign-Up'
});
</script>
Publish the page. Whenever a visitor is redirected here after a successful form submission or purchase, the conversion will be logged.
Custom HTML Block
Alternatively, you can add the conversion snippet to a specific page using a T123 (HTML) block:
- Add a new block and choose Other → T123 (HTML).
- Paste the conversion snippet:
<script>
window.scoby('logConversion', {
goal: 'Purchase',
amount: '{{ORDER_TOTAL}}'
});
</script>
This is especially useful for order confirmation or post-checkout pages.
💡 Adjust the
goal
parameter (e.g.,"Download"
,"Lead"
,"Purchase"
) to match your conversion type. You can also pass dynamic values like order totals if available in your Tilda form or eCommerce block.
Done 🎉
Scoby Analytics will now start collecting anonymous visit and (optionally) conversion data from your Tilda site. Shortly after installation, you can view your live statistics in the Scoby Analytics Dashboard.