lucyalice Posted March 16, 2020 Share Posted March 16, 2020 Site URL: http://selftalklove.com I'm working on transitioning a website in English only to a bilingual site with French. I want the text in my newsletter sign up form for 'first name', 'last name' and 'email address' to display in French, rather than English. Can anyone share a solution for this? Thank you! Link to comment
humxahafeex Posted March 16, 2020 Share Posted March 16, 2020 Hi @lucyalice You can do this , it would be little tricky you have to use Javascript code you just have to copy and paste the code in the same page as the newsletter it. You can simply do it by adding a new Code Block (click on + when you are editing the page ans serach for code ) and paste the following code in it. <script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ=" crossorigin="anonymous"></script> <script> $('.first-name>input').attr('placeholder', 'FIRST NAME TEXT'); $('.last-name>input').attr('placeholder', 'LAST NAME TEXT'); $('.email>input').attr('placeholder', 'ENTER YOUR EMAIL TEXT'); </script> Change the First Name Text , Last Name Text , Enter your Email Text with the desired text you want 🙂 Hope it helps 🙂 Link to comment
lucyalice Posted March 17, 2020 Author Share Posted March 17, 2020 Hi @humxahafeex, thank you so much for your fast response. This is very helpful 🙂 Link to comment
saraschelde Posted July 30, 2020 Share Posted July 30, 2020 Hey @humxahafeex Will I be able to use this one on my form fields too? Got this one where I want to change "First Name" and "Last Name" to Danish. Not sure how I would fine the src code? Thanks in advance, Sara Link to comment
tuanphan Posted July 30, 2020 Share Posted July 30, 2020 4 hours ago, saraschelde said: Hey @humxahafeex Will I be able to use this one on my form fields too? Got this one where I want to change "First Name" and "Last Name" to Danish. Not sure how I would fine the src code? Thanks in advance, Sara Can you share link to page in screenshot? We can help easier. Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
andrzepa Posted August 8, 2020 Share Posted August 8, 2020 On 7/30/2020 at 5:48 PM, tuanphan said: Can you share link to page in screenshot? We can help easier. Hi Tuan, let me jump on this bandwagon. https://www.marcelinaandrzejewska.pl/kontakt I would like to change First and Last Name english description to different text. thanks! Pawel Link to comment
andrzepa Posted August 10, 2020 Share Posted August 10, 2020 @tuanphan just in case you've missed this post. Your divine intervention is required:) Link to comment
tuanphan Posted August 17, 2020 Share Posted August 17, 2020 On 8/10/2020 at 8:27 PM, andrzepa said: @tuanphan just in case you've missed this post. Your divine intervention is required:) Add to Page Settings > Advanced > Header <style> /* First name */ .field.first-name span.caption-text { visibility: hidden; } .field.first-name span.caption-text:before { visibility: visible; content: "New first"; } /* last name */ .field.last-name span.caption-text { visibility: hidden; } .field.last-name span.caption-text:before { visibility: visible; content: "new last name"; } </style> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
andrzepa Posted August 17, 2020 Share Posted August 17, 2020 Thank you @tuanphan, I need figure out whether upgrading my plan to business, to edit site header, is worth the money in my case. br Pawel Link to comment
tuanphan Posted August 18, 2020 Share Posted August 18, 2020 17 hours ago, andrzepa said: Thank you @tuanphan, I need figure out whether upgrading my plan to business, to edit site header, is worth the money in my case. br Pawel If you use Personal Plan > Edit Page > Add Code Block > Paste above code Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.