<?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: Disable Hubspot tracking code with Wordpress plugin in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/486289#M24778</link>
    <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/236352"&gt;@SRicca&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the code I ended up using. Simple and works like a charm !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If cookie is refused (disable tracking) :&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;&amp;lt;script&amp;gt;
  (function() {
    _hsq.push(['doNotTrack']);
  })();
&amp;lt;/script&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If cookie is accepted (re-enable tracking) :&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;&amp;lt;script&amp;gt;
  (function() {
    _hsq.push(['doNotTrack', {track: true}]);
  })();
&amp;lt;/script&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it helps !&lt;/P&gt;</description>
    <pubDate>Fri, 27 Aug 2021 12:50:21 GMT</pubDate>
    <dc:creator>tvaudelin</dc:creator>
    <dc:date>2021-08-27T12:50:21Z</dc:date>
    <item>
      <title>Disable Hubspot tracking code with Wordpress plugin</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/474216#M24389</link>
      <description>&lt;P&gt;Hi there !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are currently using the Hubspot Wordpres plugin for tracking and embed forms into our pages/posts.&amp;nbsp;&lt;/P&gt;&lt;P&gt;As the HubSpot cookie settings banner did not suit us (&lt;EM&gt;this is not the discussion here please&lt;/EM&gt;), we decided to implement a third party tool to manage cookies through GTM called "Axeptio".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;The issue :&lt;/U&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Since the wordpress plugin inserts the tracking code automatically, I cannot enable it only if the user accepts the HubSpot tracking cookies which causes our website to not follow GDPR rules.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;The questions : &lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Is there a way to programmatically disable HubSpot tracking when using the Wordpress plugin while keeping the use of forms ?&lt;/LI&gt;&lt;LI&gt;Is there a way to implement HubSpot forms into our websites without the Wordpress plugin ? (so that I can manually implement the tracking code through GTM).&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm open to any alternatives if anybody has had this issue in the past.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Thibault&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Aug 2021 07:50:52 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/474216#M24389</guid>
      <dc:creator>tvaudelin</dc:creator>
      <dc:date>2021-08-06T07:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Hubspot tracking code with Wordpress plugin</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/474248#M24390</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/201319"&gt;@tvaudelin&lt;/a&gt;, here is some &lt;A href="https://legacydocs.hubspot.com/docs/methods/tracking_code_api/tracking_code_overview" target="_blank" rel="noopener"&gt;documentation&lt;/A&gt; about the tracking script. You can use Javascript to revoke all tracking with&amp;nbsp;_hsq.push(['doNotTrack']);.&amp;nbsp; Sadly, this also blocks anonymized data. You can read more about this specific cookie here:&amp;nbsp;&lt;A href="https://legacydocs.hubspot.com/docs/methods/tracking_code_api/place_do_not_track_cookie" target="_blank"&gt;https://legacydocs.hubspot.com/docs/methods/tracking_code_api/place_do_not_track_cookie&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can reenable tracking again by removing the added&amp;nbsp;&lt;SPAN&gt;__hs_do_not_track cookie and refresh the page.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Aug 2021 08:32:21 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/474248#M24390</guid>
      <dc:creator>Teun</dc:creator>
      <dc:date>2021-08-06T08:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Hubspot tracking code with Wordpress plugin</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/474289#M24391</link>
      <description>&lt;P&gt;Perfect, solved my problem, thanks&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/8733"&gt;@TE&lt;/a&gt;&amp;nbsp;!&lt;BR /&gt;&lt;BR /&gt;For anyone trying to fix the same thing, I created a two new tags on GTM: one that enables the "doNotTrack" cookie when axeptio returns the enable event and the second one that disables it when axeptio returns the disable event.&lt;BR /&gt;&lt;BR /&gt;Problem solved !&lt;/P&gt;</description>
      <pubDate>Fri, 06 Aug 2021 09:58:50 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/474289#M24391</guid>
      <dc:creator>tvaudelin</dc:creator>
      <dc:date>2021-08-06T09:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Hubspot tracking code with Wordpress plugin</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/486239#M24774</link>
      <description>&lt;P&gt;Please, could you provide us the correct GTM codes?&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;</description>
      <pubDate>Fri, 27 Aug 2021 11:05:26 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/486239#M24774</guid>
      <dc:creator>SRicca</dc:creator>
      <dc:date>2021-08-27T11:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Hubspot tracking code with Wordpress plugin</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/486289#M24778</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/236352"&gt;@SRicca&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the code I ended up using. Simple and works like a charm !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If cookie is refused (disable tracking) :&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;&amp;lt;script&amp;gt;
  (function() {
    _hsq.push(['doNotTrack']);
  })();
&amp;lt;/script&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If cookie is accepted (re-enable tracking) :&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;&amp;lt;script&amp;gt;
  (function() {
    _hsq.push(['doNotTrack', {track: true}]);
  })();
&amp;lt;/script&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it helps !&lt;/P&gt;</description>
      <pubDate>Fri, 27 Aug 2021 12:50:21 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/486289#M24778</guid>
      <dc:creator>tvaudelin</dc:creator>
      <dc:date>2021-08-27T12:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Hubspot tracking code with Wordpress plugin</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/526056#M26115</link>
      <description>&lt;P&gt;Hello. Are you sure that pushing the __do_not_track cookie works and Hubspot doesn't add the rest of their cookies?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, we've tried to programatically set the `&lt;EM&gt;__hs_do_not_track&lt;/EM&gt;` and `&lt;EM&gt;__hs_opt_out&lt;/EM&gt;` cookies with `yes` value, &lt;STRONG&gt;before&lt;/STRONG&gt; we inject the `&lt;EM&gt;js.hs-scripts.com&lt;/EM&gt;`. This works good if the cookie policy banner is enabled in the Hubspot Settings. However, if we disable the cookie policy from there (so we don't show Hubspot's banner), Hubspot's script doesn't seem to respect those values and fills in the browser with the tracking cookies. And if we keep it enabled, then how do we start tracking afterwards, without refreshing the page?&lt;/P&gt;</description>
      <pubDate>Sun, 14 Nov 2021 21:06:34 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/526056#M26115</guid>
      <dc:creator>CStefan</dc:creator>
      <dc:date>2021-11-14T21:06:34Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Hubspot tracking code with Wordpress plugin</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/538634#M26408</link>
      <description>&lt;P&gt;Hi Teun,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've tried your solution, what would work perfect for our case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've implemented all of it in GTM and our custom cookie consent banner and what it does, is that it places an extra Hubspot cookie __hs_do_not_track. This cookie is placed on the very first event that happens when a new visitor comes to our website. Though this cookie is in place a.s.a.p., other cookies of Hubspot (like hubspotutk, __hssc, etc.) are still placed.&lt;BR /&gt;&lt;BR /&gt;Is it correct that these cookies are still placed, but the cookie __hs_do_not_track prevents sending data to Hubspot? Or is something going wrong with my implementation?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;If it is correct that cookies are still being placed, but don't send data, it's still not GDPR proof as I understand.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your answer!&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 10:13:32 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/538634#M26408</guid>
      <dc:creator>RvanBakel</dc:creator>
      <dc:date>2021-12-08T10:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Hubspot tracking code with Wordpress plugin</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/538672#M26411</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/293229"&gt;@RvanBakel&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The cookies will still be placed, but no longer collect any data. I suppose, because they no longer have tracking functionality, you can categorize these cookies as 'functional' cookies. However, I would like to advice you to discuss this with someone with a bit more legal knowledge.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 11:22:58 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/538672#M26411</guid>
      <dc:creator>Teun</dc:creator>
      <dc:date>2021-12-08T11:22:58Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Hubspot tracking code with Wordpress plugin</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/538688#M26412</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/101258"&gt;@Teun&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've tested your assumption and unfortunately doesn't seem to be true. Even though we've set up the __hs_do_not_track, Hubspot's scripts still send tracking requests, including identification and the above mentioned cookies:&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2021-12-08 at 13.55.40.png" style="width: 999px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/55289i8D96FFCD1B526B82/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2021-12-08 at 13.55.40.png" alt="Screenshot 2021-12-08 at 13.55.40.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm wondering why isn't this a bug, since it works correctly (i.e. doesn't place cookies and doesn't send tracking requests) if the Hubspot's cookie banner is enabled, but doesn't work correctly (places cookies &lt;STRONG&gt;and&lt;/STRONG&gt; sends tracking information) if the cookie banner is disabled.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 11:58:19 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/538688#M26412</guid>
      <dc:creator>CStefan</dc:creator>
      <dc:date>2021-12-08T11:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Hubspot tracking code with Wordpress plugin</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/538699#M26413</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/166180"&gt;@CStefan&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you place the do_not_track cookie using the tracking code API?&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;_hsq.push(['doNotTrack']);&lt;/LI-CODE&gt;
&lt;P&gt;If this is placed directly when the page is loaded, it should prevent any data from being sent according to the &lt;A href="https://legacydocs.hubspot.com/docs/methods/tracking_code_api/place_do_not_track_cookie" target="_blank" rel="noopener"&gt;docs&lt;/A&gt;. If this is not the case, this sounds like a major bug.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 12:05:57 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/538699#M26413</guid>
      <dc:creator>Teun</dc:creator>
      <dc:date>2021-12-08T12:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Hubspot tracking code with Wordpress plugin</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/538710#M26414</link>
      <description>&lt;P&gt;Yes, We are including the following script tag (for testing purpose) before loading the hs-scripts:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2021-12-08 at 14.28.27.png" style="width: 999px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/55301i10B42A93A96DBB79/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2021-12-08 at 14.28.27.png" alt="Screenshot 2021-12-08 at 14.28.27.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 12:30:28 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/538710#M26414</guid>
      <dc:creator>CStefan</dc:creator>
      <dc:date>2021-12-08T12:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Hubspot tracking code with Wordpress plugin</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/538755#M26417</link>
      <description>&lt;P&gt;As such, my theory is that there's a serious bug regarding this somewhere in the hubspot script, especially since it has a different behaviour based on whether the cookie banner is enabled or not. Unfortunately, I couldn't find any place to report this as a bug, so it would be great if you could report it.&lt;BR /&gt;&lt;BR /&gt;PS: I believe this is a quite serious issue, because other customers might just be trusting the docs and not verifying the results, thus believing they are GDPR compliant, while they are not really compliant and breaking the regulations.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 14:07:22 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/538755#M26417</guid>
      <dc:creator>CStefan</dc:creator>
      <dc:date>2021-12-08T14:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Hubspot tracking code with Wordpress plugin</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/538923#M26423</link>
      <description>&lt;P&gt;Could it be that executing the script before loading the tracking script is causing the issue? Is the cookie placed with the code you're using?&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 17:58:52 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/538923#M26423</guid>
      <dc:creator>Teun</dc:creator>
      <dc:date>2021-12-08T17:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Hubspot tracking code with Wordpress plugin</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/539129#M26431</link>
      <description>&lt;P&gt;I'm sorry, but I didn't understand what you meant. What I'm doing is:&lt;BR /&gt;1. run the script above, pushin "doNotTrack" into `window.hsq`.&lt;BR /&gt;2. load the `&amp;lt;script src="&lt;A href="https://js.hs-scripts.com/xxx.js" target="_blank"&gt;https://js.hs-scripts.com/xxx.js&lt;/A&gt;" type="text/javascript"&amp;gt;&amp;lt;/script&amp;gt;`&amp;nbsp; tag, loading Hubspot script;&lt;BR /&gt;3. check out storage, noticing the `hubspotutk`, `__hssc` etc. cookies, and check out network requests, noticing tracking calls such as the ones I linked above.&lt;BR /&gt;&lt;BR /&gt;I'll try to replicate this in a very very simple sample app.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 22:37:40 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/539129#M26431</guid>
      <dc:creator>CStefan</dc:creator>
      <dc:date>2021-12-08T22:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Hubspot tracking code with Wordpress plugin</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/539162#M26435</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/101258"&gt;@Teun&lt;/a&gt;, I've made a very very simple test app: &lt;A href="https://hubspotisnotgdprcompliant.web.app/" target="_blank"&gt;https://hubspotisnotgdprcompliant.web.app/&lt;/A&gt;. It only contains pushing the `doNotTrack` and then loading the Hubspot script. Please load the page and notice:&lt;BR /&gt;1. `doNotTrack` was loaded, as the __hs_do_not_track was placed automatically by HS script;&lt;/P&gt;&lt;P&gt;2. tracking cookies were placed, containing unique user identifier (`hubspotutk`, `__hssc` , etc.);&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2021-12-09 at 01.10.36.png" style="width: 999px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/55355i584318E820732F16/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2021-12-09 at 01.10.36.png" alt="Screenshot 2021-12-09 at 01.10.36.png" /&gt;&lt;/span&gt;&lt;BR /&gt;3. tracking calls are being made, containing the above unique user identifier, for example:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2021-12-09 at 01.10.18.png" style="width: 999px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/55356iEE2F9DBFECC2B26D/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2021-12-09 at 01.10.18.png" alt="Screenshot 2021-12-09 at 01.10.18.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 23:12:57 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/539162#M26435</guid>
      <dc:creator>CStefan</dc:creator>
      <dc:date>2021-12-08T23:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Hubspot tracking code with Wordpress plugin</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/539374#M26436</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/166180"&gt;@CStefan&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for testing this so thoroughly. This is definitely not the behaviour I expected from the __hs_do_not_track cookie. The only thing I can imagine is that it prevents the tracking data from getting associated with a specific contact.&lt;BR /&gt;&lt;BR /&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/13982"&gt;@dennisedson&lt;/a&gt;&amp;nbsp;Could you verify this for me?&lt;/P&gt;</description>
      <pubDate>Thu, 09 Dec 2021 07:08:41 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/539374#M26436</guid>
      <dc:creator>Teun</dc:creator>
      <dc:date>2021-12-09T07:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Hubspot tracking code with Wordpress plugin</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/541016#M26481</link>
      <description>&lt;P&gt;Hi. Do you have any updates on this topic?&lt;/P&gt;</description>
      <pubDate>Sun, 12 Dec 2021 20:29:47 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Disable-Hubspot-tracking-code-with-Wordpress-plugin/m-p/541016#M26481</guid>
      <dc:creator>CStefan</dc:creator>
      <dc:date>2021-12-12T20:29:47Z</dc:date>
    </item>
  </channel>
</rss>

