Use Google Tag Manager with Prodio
The Prodio tracker can be installed using Google Tag Manager. However, since Google Tag Manager strips attributes from scripts, you need to use an alternative method.
Standard Installation
Normally, you would install the Prodio tracker with the following code:
<script
defer
src="https://collector.Prodio.com/script.js"
data-website-id="94db1cb1-74f4-4a40-ad6c-962362670409"
></script>
Google Tag Manager Installation
To ensure the required attributes are preserved when using Google Tag Manager, use the following script instead:
<script>
(function () {
var el = document.createElement('script');
el.setAttribute('src', 'https://collector.Prodio.com/script.js');
el.setAttribute('data-website-id', '94db1cb1-74f4-4a40-ad6c-962362670409');
document.body.appendChild(el);
})();
</script>
Adding the Script to Google Tag Manager
-
Create a New Tag:
- Go to your Google Tag Manager dashboard.
- Click on Add a new tag.
-
Tag Configuration:
- Select Custom HTML as the tag type.
- Paste the above script into the HTML content box.
-
Set a Trigger:
- Assign a trigger (e.g., All Pages) to fire the tag.
-
Publish Changes:
- Save the tag and trigger.
- Publish your changes to make the tracker active.
💡
For further assistance, refer to the Prodio Help Center or contact support.
Last updated on