Error On Wordpress Plugin Variables

Hello,

I installed the HubSpot Wordpress Plugin and things looked fine until I went to one page that appears to have an error with the Plugin.

https://www.3dicc.com/download.

At the very top of the page it says:

var _hsq = _hsq || []; _hsq.push(["setContentType", "standard-page"]);

I’ve tried searching for a simular problem but didn’t see anything. I saw documentation on wordpress hubspot queries to push disabling tracking but this appears to be a formating problem related to my page. Other pages seem fine. I’m assuming that there is something on my page causing this like an extra start or end tag but I haven’t been able to find it. Everything else appears to be working fine.

I’m using Worldpress

5.9.1
HubSpot All-In-One Marketing - Forms, Popups, Live Chat Version 8.5.24

I’m editing pages using Elementor

Elementor Version 3.5.6 by Elementor.com
Elementor Pro Version 3.0.6 by Elementor.com
Essential Addons for Elementor Version 5.0.9 by WPDeveloper
Essential Addons for Elementor - Pro Version 4.3.8 by WPDeveloper

I’m not sure how to even find and access where the plugin is modifying wordpress. Thank you in advance for any help you can give me to solve this problem!

I hope this is the right location to post this issue.

I was able to figure it out. The problem was a snippet I added to reload the page. I was using a meta tag in the header but where it was being added was causing issues. I changed it so that it realoads then addes a #ready to the location using javascript and that works and gets rid of my problem. Thank you anyone that read and considered this problem.

window.onload = function() {
 if(!window.location.hash) {
 window.location = window.location + '#ready';
 window.location.reload();
 }
}