The Optivo library is a lightweight, easy to use, javascript codebase used to allow tracking conversions based on leads sent to your website.
Simply follow this tutorial to get tracking enabled on your site in 5 minutes.
<script type="text/javascript">
var optivoScript = document.createElement('script');
optivoScript.src = "https://id.optivo.digital/id.v1.min.js";
optivoScript.defer = true;
optivoScript.onload = function () {
window._OPTIVO.init();
};
document.head.appendChild(optivoScript);
</script>
<script type="text/javascript">
var optivoScript = document.createElement('script');
optivoScript.src = "https://id.optivo.digital/id.v1.min.js";
optivoScript.defer = true;
optivoScript.onload = function () {
window._OPTIVO.init().then(function () {
window._OPTIVO.conversion();
});
};
document.head.appendChild(optivoScript);
</script>
Once you have added the code snippets above to your website and deployed the changes, it would be a good idea to visit the pages it has been enabled on.
Go to a page you have the tracking enabled on, then inspect the browser console window (F12 in Chrome) and look for a line output that should read the following:
[OPTIVO]: Active on this page.
Of course reach out to us if you need help at any stage.
You can checkout the tag library at the following URL if you wish to inspect it’s function:
https://id.optivo.digital