Is Finsweet cookie plugin for Webflow blocking my Lead Forensics tracking?

Description

The tracking visitors script for Lead Forensics has stopped working when switching to Webflow.

Site URL

Required: Please provide a staging/production URL where we can see the issue

Steps to Reproduce

In DevTools → Network, do you see 802353.js load on refresh? (Yes/No)

  1. If Yes, click it and tell me:
    • Status (200 / blocked / 404 / other)

    • Initiator (this is key: it tells us what injected it)

  2. If No, then LF is simply not running on that page at all.

Expected Behavior

Find the script ID number listed in either Page Source code or in the Elements inspector.

Actual Behavior

No code or reference seen.

Hey @os1 :flexed_biceps:

This is actually related to Consent Pro (the cookie/consent management tool) rather than Components.

Looking at your HTML, the issue is that your Lead Forensics tracking script doesn’t have any consent management attributes on it:

<script type="text/javascript" src="https://consortiumtradeagency.com/js/812592.js"></script>

Because this script tag isn’t tagged with a consent category, Consent Pro doesn’t know how to manage it — so it’s likely being blocked by default or not loading because the consent system can’t categorize it.

What typically needs to happen:

Third-party tracking scripts like Lead Forensics need to be tagged with the appropriate consent category so that Consent Pro knows when to allow them to run based on user consent. Since Lead Forensics is a visitor tracking tool, it would typically fall under the analytics or marketing consent category (depending on how your privacy policy defines it).

If adding consent attributes to the script tag doesn’t work (sometimes external scripts load sub-resources that bypass attribute-based blocking), there’s also a JavaScript API approach using Consent Pro’s API to dynamically load the script only after consent is given. But let’s try the simpler attribute approach first :folded_hands: