I want to change the following
“Meinen Namen, E-Mail und Website in diesem Browser speichern, bis ich wieder kommentiere” and “Kommentar abschicken” (the button) to english. I changed everything else with loco translate, but this I can’t change. How can I do it?
Best regards,
Tobi
Hey transformmedia,
Sorry for the late reply, I took a look at your page and wrote the function to replace the 3 lines of text and the button:
Try adding this code to the end of your functions.php file in Appearance > Editor:
function custom_script(){
?>
<script>
(function($){
$(document).ready(function(){
$("label[for='wp-comment-cookies-consent']").text("Cookies Consent");
$("label[for='subscribe_comments']").text("Subscribe Comments");
$("label[for='subscribe_blog']").text("Subscribe Blog");
$("input[type='submit']#submit.submit").val("Button Text");
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'custom_script');
Please adjust the text in the code above to suit.
Best regards,
Mike