Untitled
unknown
plain_text
a year ago
447 B
37
Indexable
function custom_button_text_script() {
?>
<script>
document.addEventListener("DOMContentLoaded", function() {
let button = document.querySelector("#flexiblecookies_accept_settings_cookies");
if (button) {
button.textContent = "Accept Cookies"; // Change this text as needed
}
});
</script>
<?php
}
add_action('wp_footer', 'custom_button_text_script');Editor is loading...
Leave a Comment