Skip to content

Instantly share code, notes, and snippets.

@camielpeeters
Forked from arafathusayn/hidetdo.js
Created August 5, 2018 15:30
Show Gist options
  • Save camielpeeters/2c084cfdc8b8d8ab5fc0c097876ea086 to your computer and use it in GitHub Desktop.
Save camielpeeters/2c084cfdc8b8d8ab5fc0c097876ea086 to your computer and use it in GitHub Desktop.
Hide Tidio Chat Branding
function hideTdo() {
var timer = null;
var target = document.querySelectorAll('#tidio-chat iframe')[0];
if(!target || typeof target === 'undefined') {
if(timer !== null) {
clearTimeout(timer);
}
timer = setTimeout(hideTdo, 500);
return;
} else {
var timer2 = null;
var tdo = document.querySelectorAll('#tidio-chat iframe')[0].contentWindow.document.querySelectorAll('#root > div > div.online > div.input-wrapper > a.powered')[0];
if(!tdo || typeof tdo === 'undefined') {
if(timer2 !== null) {
clearTimeout(timer2);
}
timer2 = setTimeout(hideTdo, 1);
return;
}
document.querySelectorAll('#tidio-chat iframe')[0].contentWindow.document.querySelectorAll('#root > div > div.online > div.input-wrapper > a.powered')[0].style.display = 'none';
return true;
}
}
hideTdo();
@bertusjwz
Copy link

Hey Camiel,

Ik kom er niet uit zou je mij eventueel kunnen helpen?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment