Migrate from Cookiebot
Time: ~1.5 hours
What you need
- Cookiebot account with admin access
- ConsentForge account (create one at consentforge.com/register)
- Access to your website's HTML or CMS
Step 1: Export your Cookiebot data
- Log in to manager.cookiebot.com
- Go to your domain → Cookies tab
- Click Export → CSV
- Save the file — you'll use this in Step 3
Step 2: Create your ConsentForge property
- Log in to app.consentforge.com
- Click Add Property
- Enter your domain URL
- ConsentForge will run an initial scan
Step 3: Import your vendor/cookie list
- Go to Property → Vendors → Import
- Select Cookiebot CSV
- Upload your exported CSV
- Review the import preview — ConsentForge will match known vendors automatically
- For unmatched cookies, assign them to the appropriate category manually
- Click Import
Step 4: Configure your banner
In Banner Builder:
- Set your brand colors (match your previous banner)
- Upload your logo
- Review and edit the banner texts in DE and EN
Step 5: Run Shadow Mode
Add the ConsentForge script alongside your existing Cookiebot script. Both run in parallel — Cookiebot still controls consent, but ConsentForge collects data.
<!-- Existing Cookiebot script — keep this for now -->
<script id="Cookiebot" src="https://consent.cookiebot.com/uc.js"
data-cbid="YOUR_COOKIEBOT_ID" type="text/javascript"></script>
<!-- ConsentForge in shadow mode — add this -->
<script
src="https://cdn.consentforge.com/consentforge.min.js"
data-token="YOUR_CF_TOKEN"
data-shadow-mode="true"
defer
></script>
In shadow mode, ConsentForge shows no banner — it just collects scan data and prepares your setup.
Step 6: Test
After 1–2 weeks of shadow mode:
- Check Property → Scanner → Findings — all vendors should be mapped
- Preview your ConsentForge banner in the Banner Builder
- Test the full flow in an incognito window using the staging embed URL
Step 7: Live switch
When you're ready to go live:
- Remove the Cookiebot
<script>tag - Remove
data-shadow-mode="true"from the ConsentForge tag - If you used Cookiebot for Google Consent Mode, update your GTM setup to use the ConsentForge template
<!-- Final ConsentForge tag (no shadow mode) -->
<script
src="https://cdn.consentforge.com/consentforge.min.js"
data-token="YOUR_CF_TOKEN"
defer
></script>
Step 8: Post-migration check
- Cookiebot script removed from all pages
- ConsentForge banner appearing in incognito window
- Scripts blocked before consent (DevTools → Network)
- Google Consent Mode v2 firing (check dataLayer)
- Consent receipts appearing in Dashboard → Evidence
- Cancel your Cookiebot subscription
tip
If you used Cookiebot's WordPress plugin, install the ConsentForge WordPress plugin and remove the Cookiebot plugin. See WordPress setup.