Website Builders & No-Code CMS

Installing Scoby Analytics on Webflow

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:

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 your Webflow Dashboard.
  • Hover over the project you want to integrate and click Settings ⚙️.
  • Open the Custom Code tab.
Open the Custom Code tab in Webflow project settings
  • In the Head Code section, paste the following script.
    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>
Paste the Scoby Analytics snippet into the Webflow Head Code field
  • Scroll down and click Save Changes.
  • Then click PublishPublish to Selected Domains to deploy the snippet.

From this point on, all published pages will automatically send anonymous pageview data to Scoby Analytics.


Logging Conversions

If you’d like to log form submissions, purchases, or other conversions in Webflow, you can use the Custom Code Embed element or Webflow’s built-in form success pages.

Example: Log Form Submissions

  • Open your Webflow Designer.
  • Select the Form element you want to analyze.
  • Click the Form BlockForm Settings.
  • In the Form Success Message, add an Embed element and paste:
<script>
   window.scoby('logConversion', {
      goal: 'Sign-Up'
   });
</script>

💡 You can adjust the goal parameter (e.g. "Purchase", "Download", "Contact Form").

Example: Log Purchases

For Webflow Ecommerce sites, you can add the following snippet to the Order Confirmation Page via the Ecommerce settings:

<script>
   window.scoby('logConversion', {
      goal: 'Purchase',
      amount: '{{ total_price }}'
   });
</script>

Done 🎉

Scoby Analytics will now begin collecting anonymous visit and (optionally) conversion data from your Webflow site. Shortly after installation, you can view your live statistics in the Scoby Analytics Dashboard.

Previous
Wix

Please note:Scoby does not provide legal advice. The information provided in this documentation is for general informational purposes only and does not constitute legal consultation. You should always consult your legal counsel or Data Protection Officer (DPO) to assess how applicable laws and regulations apply to your specific situation. If your DPO or legal team has questions about Scoby Analytics, they can contact us. We’re happy to provide detailed technical explanations.