Untitled

 avatar
unknown
plain_text
a year ago
447 B
33
Indexable
function custom_js_script() {
    ?>
    <script>
        document.addEventListener("DOMContentLoaded", function() {
            let element = document.querySelector("#flexiblecookies_settings > table > tbody > tr:nth-child(5) > td:nth-child(1) > p");
            if (element) {
                element.textContent = "Type new name here";
            }
        });
    </script>
    <?php
}
add_action('wp_footer', 'custom_js_script');
Editor is loading...
Leave a Comment