-
-
Save worksmarter/f41fcf3411aa776d54cee0ae6ea771bd to your computer and use it in GitHub Desktop.
Hide TidioChat Branding (for new theme)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.querySelector('#tidio-chat iframe').contentDocument.querySelector(`a.powered`); | |
if(!tdo || typeof tdo === 'undefined') { | |
if(timer2 !== null) { | |
clearTimeout(timer2); | |
} | |
timer2 = setTimeout(hideTdo, 1); | |
return; | |
} | |
document.querySelector('#tidio-chat iframe').contentDocument.querySelector(`a.powered`).remove(); | |
return true; | |
} | |
} | |
hideTdo(); | |
setInterval(hideTdo, 10); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment