<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: HubSpot Forms and Google Analytics Events in Marketing Integrations</title>
    <link>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/321810#M1968</link>
    <description>&lt;P&gt;Very cool, thanks! I'll take a look. Learning something new every day.&lt;/P&gt;</description>
    <pubDate>Tue, 25 Feb 2020 22:07:56 GMT</pubDate>
    <dc:creator>jtuason00</dc:creator>
    <dc:date>2020-02-25T22:07:56Z</dc:date>
    <item>
      <title>HubSpot Forms and Google Analytics Events</title>
      <link>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/320381#M1957</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to track HubSpot Form submissions as events in Google Analytics. Really, I'm using Google Tag Manager, hoping to pass the event information to Google Analytics&lt;/P&gt;&lt;P&gt;Here's where I'm running into an issue:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The HubSpot form is implemented through a time-based lightbox popup (Convert Plus).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In GTM, the tag trigger is set up on Trigger Type: Form Submission firing on Form ID.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this case, I've tried both the HubSpot form's ID and the lightbox container's ID (because why not).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've also tried setting it to fire on Click URL with the target page (an online PDF.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With that said, the form tag still doesn't appear in the GTM preview panel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, I've seen these posts on GA events and HubSpot forms but I haven't attempted any of them because 1. I'll admit I'm out of my depth here, and 2. The lightbox popup manager is throwing me for a loop when it comes to embed codes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.hubspot.com/t5/APIs-Integrations/Trigger-Google-Analytics-Event-with-Form-Submission/m-p/223490" target="_blank" rel="noopener"&gt;Trigger Google Analytics Event with Form Submission&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.hubspot.com/t5/Marketing-Integrations/CTA-and-Google-analytics-event-tracking/m-p/291247#M1734" target="_blank" rel="noopener"&gt;CTA and Google analytics event tracking&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.hubspot.com/t5/Marketing-Integrations/Google-analytics-form-submission-event-tracking-possible/m-p/174896#M588" target="_blank" rel="noopener"&gt;Google analytics form submission event tracking - possible workaround&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Any thoughts?&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2020 20:00:00 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/320381#M1957</guid>
      <dc:creator>jtuason00</dc:creator>
      <dc:date>2020-02-19T20:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: HubSpot Forms and Google Analytics Events</title>
      <link>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/321155#M1963</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/119570"&gt;@jtuason00&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Due to how Hubspot forms work the built in form submission listener in GTM won't work; you have to actually litsen for Hubspot's particular submission callback to track it. Here's a step-by-step on creating a custom listener for tracking hubspot form submissions with GTM:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://nettlesnet.com/track-hubspot-forms-with-google-tag-manager-analytics/" target="_blank"&gt;https://nettlesnet.com/track-hubspot-forms-with-google-tag-manager-analytics/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If you want to track only a particular form you can just add &amp;amp;&amp;amp; event.data.id === "[your form GUID here]" to the end of the if statement in the form listener tag the instructions have you add. Like so :&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&amp;lt;script type="text/javascript"&amp;gt;
  window.addEventListener("message", function(event) {
    if(event.data.type === 'hsFormCallback' &amp;amp;&amp;amp; event.data.eventName === 'onFormSubmitted' &amp;amp;&amp;amp; event.data.id === "6a007255-a43f-4d60-a668-d74cf37b9aa3") {
      window.dataLayer.push({
        'event': 'hubspot-form-success',
        'hs-form-guid': event.data.id
      });
    }
  });
&amp;lt;/script&amp;gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;Hope this helps!&lt;/P&gt;</description>
      <pubDate>Sun, 23 Feb 2020 19:14:55 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/321155#M1963</guid>
      <dc:creator>alyssamwilie</dc:creator>
      <dc:date>2020-02-23T19:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: HubSpot Forms and Google Analytics Events</title>
      <link>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/321810#M1968</link>
      <description>&lt;P&gt;Very cool, thanks! I'll take a look. Learning something new every day.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2020 22:07:56 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/321810#M1968</guid>
      <dc:creator>jtuason00</dc:creator>
      <dc:date>2020-02-25T22:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: HubSpot Forms and Google Analytics Events</title>
      <link>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/337729#M2125</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/91608"&gt;@alyssamwilie&lt;/a&gt;&amp;nbsp; &amp;nbsp;is it possible to track the abandoned forms with some code as you posted?&lt;/P&gt;&lt;P&gt;I have been using the code that you posted to track the form submissions with GTM,&amp;nbsp; but I would like to know if I can track the abandoned forms&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2020 16:47:21 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/337729#M2125</guid>
      <dc:creator>juanjosezg</dc:creator>
      <dc:date>2020-05-08T16:47:21Z</dc:date>
    </item>
    <item>
      <title>Re: HubSpot Forms and Google Analytics Events</title>
      <link>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/393780#M2626</link>
      <description>&lt;P&gt;&lt;A href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/91608" target="_blank"&gt;@amwilie&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;I'm hoping to get abandoned forms, but also drop data layer varables for all actions within the form process.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Dec 2020 18:02:25 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/393780#M2626</guid>
      <dc:creator>factsetresearch</dc:creator>
      <dc:date>2020-12-15T18:02:25Z</dc:date>
    </item>
    <item>
      <title>Re: HubSpot Forms and Google Analytics Events</title>
      <link>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/394296#M2631</link>
      <description>&lt;P&gt;Can you please advise on a way to modify the lisener, the variable, or both to include the name of the HS form itself? We wamt to set up goal tracking so that the label has something human readable for reporting purposes. Right now it just has&amp;nbsp;&amp;nbsp;"{{Forms — hs-form-guid}}".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We want to roll up all the different form submissions from all the different forms into the same goal in GA but be able to distinguish between which ones got sent. So...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Category: button&lt;/P&gt;&lt;P&gt;Action: Submit&lt;/P&gt;&lt;P&gt;Label: {{hs-form-name}}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would be ideal. Again, what would need to be modified in the listener/variable to accomplish this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 00:06:40 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/394296#M2631</guid>
      <dc:creator>simeoned</dc:creator>
      <dc:date>2020-12-17T00:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: HubSpot Forms and Google Analytics Events</title>
      <link>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/459373#M3149</link>
      <description>&lt;P&gt;This was very helpful! It worked perfectly for me.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I'm wondering how to count the same trigger as a Google Ads conversion.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please help me?&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jul 2021 20:56:26 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/459373#M3149</guid>
      <dc:creator>DDemagistris</dc:creator>
      <dc:date>2021-07-14T20:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: HubSpot Forms and Google Analytics Events</title>
      <link>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/471883#M3213</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/91608"&gt;@alyssamwilie&lt;/a&gt;&amp;nbsp;Will the same code work for Google Ads?&lt;/P&gt;</description>
      <pubDate>Tue, 03 Aug 2021 20:40:09 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/471883#M3213</guid>
      <dc:creator>DDemagistris</dc:creator>
      <dc:date>2021-08-03T20:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: HubSpot Forms and Google Analytics Events</title>
      <link>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/475856#M3226</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/210634"&gt;@DDemagistris&lt;/a&gt;&amp;nbsp;You can follow &lt;A href="https://support.google.com/tagmanager/answer/6105160?hl=en" target="_blank" rel="noopener"&gt;these instructions&lt;/A&gt; for setting up a tag for Google Ads conversion then just use the hubspot-form-success trigger as the trigger for the tag.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/154376"&gt;@simeoned&lt;/a&gt;&amp;nbsp;Unfortanutely Hubspot does not store the form title in anyway in the form code or listener so there's no way to access it easily. You would have to use the &lt;A href="https://legacydocs.hubspot.com/docs/methods/forms/v2/get_form" target="_blank" rel="noopener"&gt;forms API&lt;/A&gt;&amp;nbsp;to search for it by it's guid and then get the name that way. API's aren't my strong suit but I think it'd be something like this?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;window.addEventListener("message", function(event) {
  if(event.data.type === 'hsFormCallback' &amp;amp;&amp;amp; event.data.eventName === 'onFormSubmitted') {
    var url = "https://api.hubapi.com/forms/v2/forms/" + event.data.id + "/?hapikey=YOUR-API-KEY"

    $.ajax({
      url: url,
      dataType: json,
      data: data,
      success: function(html) {
        window.dataLayer.push({
          'event': 'hubspot-form-success',
          'hs-form-name': data.name
        });
      }
    });
  }
});&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/111008"&gt;@factsetresearch&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/130567"&gt;@juanjosezg&lt;/a&gt;&amp;nbsp;You would have to keep track of form fields interacted with and then probably use an &lt;A href="http://window.addEventListener('beforeunload',%20function(e) {   var myPageIsDirty = ...; //you implement this logic...   if(myPageIsDirty) {     //following two lines will cause the browser to ask the user if they     //want to leave. The text of this dialog is controlled by the browser.     e.preventDefault(); //per the standard     e.returnValue = ''; //required for Chrome   }   //else: user is allowed to leave without a warning dialog });" target="_blank" rel="noopener"&gt;exit intent trigger&lt;/A&gt;. It would work ok if the person stays in the tab and leaves the page, but I don't think a script would be able to run quick enough to capture when someone closes the tab. I think it'd be a little complex so don't currently have the time to throw some code here for you but if I get some free time I'll see what I can put together.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Aug 2021 14:02:38 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/475856#M3226</guid>
      <dc:creator>alyssamwilie</dc:creator>
      <dc:date>2021-08-09T14:02:38Z</dc:date>
    </item>
    <item>
      <title>Re: HubSpot Forms and Google Analytics Events</title>
      <link>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/498767#M3312</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/91608"&gt;@alyssamwilie&lt;/a&gt;&amp;nbsp;I've followed all the steps for setting up conversion tracking between hubspot and Google Ads in GTM. I do have one problem though, it seems like the Google Ads Conversion Tag is firing as a successful conversion even when someone hasn't filled in all required fields but tried sending in the form.&lt;/P&gt;&lt;P&gt;Basically it seems they're firing on Form Submit while they should only fire on Form Submitted.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I'm worried about is that this will distort our conversion data in Google Ads when people try sending in a complete form. We've hade some correct conversions where we see 1 form submission in HubSpot while it's being counted as 1 conversion in Google Ads. But we also hade 3 conversions one day in Google Ads, but no form submissions at all in HubSpot. So I'm really worried this might happen from time to time if we don't find the cause to this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you know why this could be? Or if you think it has to do with something else?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is my set up:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RTeuchler_0-1632301905617.png" style="width: 999px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/50729i7B740F529FE09453/image-size/large?v=v2&amp;amp;px=999" role="button" title="RTeuchler_0-1632301905617.png" alt="RTeuchler_0-1632301905617.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RTeuchler_1-1632302005320.png" style="width: 694px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/50734iA7B30391D0756537/image-dimensions/694x484?v=v2" width="694" height="484" role="button" title="RTeuchler_1-1632302005320.png" alt="RTeuchler_1-1632302005320.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RTeuchler_2-1632302506194.png" style="width: 692px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/50735iFBC8F0F82C0D3B26/image-dimensions/692x434?v=v2" width="692" height="434" role="button" title="RTeuchler_2-1632302506194.png" alt="RTeuchler_2-1632302506194.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RTeuchler_3-1632302796981.png" style="width: 695px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/50736i32087AD338E447D1/image-dimensions/695x481?v=v2" width="695" height="481" role="button" title="RTeuchler_3-1632302796981.png" alt="RTeuchler_3-1632302796981.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tags firing when I haven't filled in alla required fields, but tried sending in the form&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RTeuchler_4-1632303087932.png" style="width: 694px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/50737i90890F3B49EE6E8F/image-dimensions/694x210?v=v2" width="694" height="210" role="button" title="RTeuchler_4-1632303087932.png" alt="RTeuchler_4-1632303087932.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and after that when I send in the form with all required fields filled in I get a form success message with the correct Form ID etc which would count as a conversion.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Sep 2021 09:45:33 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/498767#M3312</guid>
      <dc:creator>RTeuchler</dc:creator>
      <dc:date>2021-09-22T09:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: HubSpot Forms and Google Analytics Events</title>
      <link>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/498815#M3313</link>
      <description>&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/245746"&gt;@RTeuchler&lt;/a&gt; Due to the way Hubspot forms work you can't use GA's Form Submission trigger to accurately log form submissions. Follow the instructions exactly in the link I provided in my solution answer to create a variable for the form guid and a custom event trigger that looks for the data the form listener pushes.</description>
      <pubDate>Wed, 22 Sep 2021 11:36:33 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/498815#M3313</guid>
      <dc:creator>alyssamwilie</dc:creator>
      <dc:date>2021-09-22T11:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: HubSpot Forms and Google Analytics Events</title>
      <link>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/565436#M3594</link>
      <description>&lt;P&gt;&lt;STRONG&gt;EASIEST METHOD EVER&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;If Google Tag Manager is too complex as you you're a little out of your deptd, the easiest way ever is shown in this blog post &lt;A href="https://codeandtonic.com/blog/track-hubspot-forms-with-google-analytics-in-2-minutes" target="_blank" rel="noopener"&gt;Track Hubspot forms with Google analytics. No Google Tag Manager!&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Like amwilie mentioned, you'll need to listen to events coming from the iframe but...you don't really need to understand any of that. Just copy-paste the code in that blog post to your site.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 29 Jan 2022 13:30:05 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/565436#M3594</guid>
      <dc:creator>codeandtonichq</dc:creator>
      <dc:date>2022-01-29T13:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: HubSpot Forms and Google Analytics Events</title>
      <link>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/601487#M3782</link>
      <description>&lt;P&gt;Could you please help me with a thing i have noticed? I have setup the event listener for form submission parsed the form name parameter towards the event, and somehow I do not see the data in google analytics 4. I am wondering because I have internal traffic excluded? How about someone who has submitted a newsletter signup via hubspot form, i have checked the gtm and my event is triggered correctly in tag assistant, when i debug, but the new person who has signed up to my newsletter is not counted in google analytics on the 23rd of march, when i received an email from hubspot saying they have registered a new sign up. please help. i am confused. Any help would be appreciated.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Mar 2022 08:48:30 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/601487#M3782</guid>
      <dc:creator>GeorgianaC</dc:creator>
      <dc:date>2022-03-25T08:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: HubSpot Forms and Google Analytics Events</title>
      <link>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/629314#M3920</link>
      <description>&lt;P&gt;Hey, I'm still encountering this problem and the link you shared is not accessible anymore. Is there an updated url?&lt;/P&gt;</description>
      <pubDate>Mon, 09 May 2022 12:42:08 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/629314#M3920</guid>
      <dc:creator>cgrignon</dc:creator>
      <dc:date>2022-05-09T12:42:08Z</dc:date>
    </item>
    <item>
      <title>Re: HubSpot Forms and Google Analytics Events</title>
      <link>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/636724#M3949</link>
      <description>&lt;P&gt;Thanks for this. I'm struggling with Step 4 as I'm using Google Analytics GA4 - can you let me know what to change please.&lt;/P&gt;</description>
      <pubDate>Sat, 21 May 2022 10:32:26 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/636724#M3949</guid>
      <dc:creator>DShepherd</dc:creator>
      <dc:date>2022-05-21T10:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: HubSpot Forms and Google Analytics Events</title>
      <link>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/1042367#M6531</link>
      <description>&lt;P&gt;Any chance you have an updated code for the new form builder they're loading in a different way?&lt;/P&gt;</description>
      <pubDate>Wed, 18 Sep 2024 01:52:29 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Marketing-Integrations/HubSpot-Forms-and-Google-Analytics-Events/m-p/1042367#M6531</guid>
      <dc:creator>SilverBoxAgency</dc:creator>
      <dc:date>2024-09-18T01:52:29Z</dc:date>
    </item>
  </channel>
</rss>

