Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1072407

    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

    #1073781

    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:
    2019-03-02-164339
    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.