Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1075530

    Hi support,

    Great that you have integrated Google ReCAPTCHA in forms :-)
    But how do we translate “Submit” ?

    Thanks :-)

    OKEIwebbureau

    #1076873

    Hey OKEIwebbureau,
    Sorry for the late reply, You can change the submit button by adding a code block element to the top of your page and add this script:

    <script>
    (function($){
    $(document).ready(function(){
          $("input[type='submit']").val("Send");
      });
      })(jQuery);
    </script>

    in this example please change the word “send” to your new word.
    If you wish to have this active for your entire site, Then add this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function($){
    $(document).ready(function(){
          $("input[type='submit']").val("Send");
      });
      })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Best regards,
    Mike

    #1080980

    Hi Mike,

    It doens’t work for me :-/

    I tried the solution for the entire site as many pages contain forms.

    I am using a child theme and put the code at the very bottom of the file, but the buttons still show “Submit”. However when loading it shortly shows “Sendy”…..but then again “Submit”.

    Please take a look at: https://okeiwebbureau.dk/bestil-wordpress-opdateringsservice-og-ugentlig-backup/

    Thanks :-)

    /OKEIwebbureau

    #1080985

    I wasn’t aware of a new update. After installing the reCAPTCHA works.

    Please close.

    /OKEIwebbureau

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Google ReCAPTCHA – how to change "Submit"’ is closed to new replies.