Tagged: x
-
AuthorPosts
-
November 7, 2016 at 4:53 am #1246868
breakintoenglishParticipantHi 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,
DavidNovember 7, 2016 at 5:13 am #1246898
ThaiModeratorHi 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 🙂
-
AuthorPosts
- <script> jQuery(function($){ $("#no-reply-1246868 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>
