Code-Snippets-Functions/Execute a function on a child site/WordPress/remove-tawk-to-branding-from-the-chat-widget.txt

21 lines
444 B
Text

add_action( 'wp_footer', static function() {
?>
<script>
setInterval( findTawkAndRemove, 100 );
function findTawkAndRemove() {
let parentElement = document.querySelector("iframe[title*=chat]:nth-child(2)");
if ( parentElement ) {
let element = parentElement.contentDocument.querySelector(`a[class*=tawk-branding]`);
if ( element ) {
element.remove();
}
}
}
</script>
<?php
});