Installing the AnyTrack Tag in Website Builders
Learn how to install the AnyTrack Tag in your favorite website builders and start tracking conversions and optimizing ROAS.
To learn the fundamentals for installing the AnyTrack Tag and the 4 methods to install it visit: https://readme.anytrack.io/docs/anytrack-tag
This article includes guides to installing the AnyTrack Tag on some specific website builders.
Onepage.io
Onepage.io includes free Integration with Google Tags, allowing you to install scripts on your page using Google Tag Manager.
Find this option by navigating to Settings > Integrations > Google Tag
Click here to learn how to configure the AnyTrack Tag in Google Tag Manager.
Onepage.io Link Tracking Issue
OnePage.io page builder is known to interfere with link tracking. Onepage.io strips query parameters from the URL of published links after the click. One outcome is that affiliate links won't pass the tracking parameter with the Click ID to the affiliate offer.
To address this issue, here we provide a JS code that prevents this behavior, and it can be implemented with the Google Tag as well. The code should be added to the END of the of the page.
<script>
(function () {
"use strict";
setTimeout(() => {
const i = (...args) => console.info("%c<>", "color: #217DED; font-weight: bold;", ...args);
document.querySelectorAll("a[data-at-href]").forEach((el) => {
el.parentNode.replaceChild(el.cloneNode(true), el);
i("Fixed link", el.getAttribute("data-at-href"));
});
i("Custom script ran");
}, 1000);
})();
</script>
Updated 10 days ago