huge performance hit with tidio
-
tl;dr tidio is one of the only scripts that won’t delay js.
Tidio loads 600kb of files upon load. t it’s not possible to delay load (litespeed cache) or css. There’s literally no reason for it to load before user interacts with page.
Is 600kb high? tidio website is absolutely not optimized, so it takes 2,5mb to load. wordpress page is only 300kb and upon user iteraction is 1,2mb. the website I work on is normally 400kb, with tidio is 1mb.
additionally all the calls to other domains are slowing down website even more
I’ve found on the website this code, deactivated wordpress plugin, replaced PUBLIC_KEY with my public key and it’s working. Am I missing anything by using custom implementation?
setTimeout(function () {
var tidioScript = document.createElement('script');
tidioScript.src = '//code.tidio.co/PUBLIC_KEY.js';
document.body.appendChild(tidioScript);
}, 5 * 1000);
- You must be logged in to reply to this topic.