Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1246868
    breakintoenglish
    Participant

    Hi there,

    We’ve been developing a new website with X and are in the finishing stages.

    License number: 5e3832cd-7390-4da6-b9a2-7b997fbf094f

    And we’re having trouble changing the field titles in the chechout page from ENglish into Spanish, such as NAME, EMAIL, ADDRESS etc…

    this is the page
    http://oscarballido.com/homes/finalizar-compra/

    the developer has not found the solution, how do we do this??

    thanks for your help, it’s pretty urgent (probably like many of the queries you get…)

    Best regards,
    David

    #1246898
    Thai
    Moderator

    Hi David,

    Please add the following code under functions.php file locates in your child theme:

    add_filter('gettext', 'translate_text' );
    function translate_text($translated) { 
      $translated = str_ireplace('First Name', 'your text', $translated);
      $translated = str_ireplace('Last Name', 'your text', $translated);
      $translated = str_ireplace('Company Name', 'your text', $translated);
      $translated = str_ireplace('Address', 'your text', $translated);
      $translated = str_ireplace('Town / City', 'your text', $translated);
      return $translated; 
    }

    Hope it helps 🙂

  • <script> jQuery(function($){ $("#no-reply-1246868 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>