mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-05 12:32:23 +08:00
https://sanjeebaryal.com.np/how-to-remove-tawk-to-branding-from-the-chat-widget-in-wordpress/
21 lines
444 B
Text
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
|
|
});
|