Cookie Consent in the Funnel / Website Builder

Cookie Consent can help you ensure compliance with data protection regulations by obtaining user consent before collecting any personal information.

Key Features & Benefits
  • Effortlessly implement cookie consent across your entire website for a streamlined user experience
  • Ensure compliance with customizable cookie settings
  • Easily customizable cookie categories and settings to meet specific business requirements

How to Use the Cookie Consent Banner
  1. Navigate to the funnel / website you want to add a cookie consent banner to, and open it up inside the builder.
  2. Click the cookie icon at the top of the builder.
  3. Toggle ON the "Enable cookie consent banner" option in the cookie consent sidebar on the right side of the builder.

Click the cookie consent icon, then toggle ON

  1. Check the box on to accept the terms and conditions, then click on "Agree"

agree to the term and condition for using the cookie consent banner

  1. Personalize the look and feel of cookie consent banner to match your funnel / website's branding
  2. Finalize your changes by saving or publishing the funnel / website page.
always save and publish the page
Make sure to "Save" and "Publish" the page.

How to Use Marketing Tools?

If you are planning to use any of the tools listed below for analytics, please use the codes in this doc when setting them up.

  1. FB Pixel
  2. Google Tag Manager
  3. Google Analytics

⚠️Important: 

The <noscript>  tags must be removed, since the FG Funnels cookie banner is a Javascript solution, and noscript is for browsers that do not support Javascript. If you do include the <noscript>  tag, then you may unintentionally be setting cookies without a visitor's consent.


If you are using any other marketing tool, please make sure you get the consent of the user by adding them to the cookie policy of your funnel / website.


Other marketing tools or 3rd party codes are not supported, and have to be whitelisted in the advanced settings of the cookie banner. The owner of the funnel or website is responsible for adding them to the cookie policy, and getting consent for the same.

Facebook Pixel

<script data-cookieconsent="ignore">
    !function(f,b,e,v,n,t,s) 
    {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
    n.callMethod.apply(n,arguments):n.queue.push(arguments)};
    if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0'; 
    n.queue=[];t=b.createElement(e);t.async=!0;
    t.src=v;s=b.getElementsByTagName(e)[0]; 
    s.parentNode.insertBefore(t,s)}(window, document,'script',
    'https://connect.facebook.net/en_US/fbevents.js');
    fbq('consent', 'revoke');
    fbq('init', '{your-pixel-id-goes-here}');
    fbq('track', 'PageView');
    window.addEventListener('LCCookieConsentDoneFB',function(cookieConsent){
    fbq('consent', cookieConsent.detail.fb)},!1)
</script>

Google Analytics

<script>
  window.dataLayer = window.dataLayer || [];
  function gtag() {
    dataLayer.push(arguments);
  }

  gtag("consent", "default", {
    ad_storage: "denied",
    ad_user_data: "denied",
    ad_personalization: "denied",
    analytics_storage: "denied",
  });
  window.addEventListener(
    "LCCookieConsentDoneGTag",
    function (cookieConsent) {
      if (cookieConsent.detail.gtag === 'grant'){
        gtag("consent", "update", {
          ad_storage: "granted",
          ad_user_data: "granted",
          ad_personalization: "granted",
          analytics_storage: "granted",
        });
      }
    },
    !1
  );
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=TAG_ID"></script>
<script>
  gtag("js", new Date());
  gtag("config", "TAG_ID");
</script>

Google Tag Manager

<!-- Google Tag Manager -->
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag() {
    dataLayer.push(arguments);
  }

  gtag("consent", "default", {
    ad_storage: "denied",
    ad_user_data: "denied",
    ad_personalization: "denied",
    analytics_storage: "denied",
  });
  window.addEventListener(
    "LCCookieConsentDoneGTM",
    function (cookieConsent) {
      if (cookieConsent.detail.gtm === 'grant'){
        gtag("consent", "update", {
          ad_storage: "granted",
          ad_user_data: "granted",
          ad_personalization: "granted",
          analytics_storage: "granted",
        });
      }
    },
    !1
  );
</script>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-XXXXXX');</script>
<!-- End Google Tag Manager -->