WebSite X5Help Center

 
Dag J.
Dag J.
User

Edit box info in Image form  en

Author: Dag J.
Visited 347, Followers 2, Shared 0  

Is it possible to change default text i the submission form boxes? Now it is in english but I want to change it to swedish.

Posted on the
10 ANSWERS - 5 USEFUL - 1 CORRECT
Andre E
Andre E
Moderator

Press edit and change label, that should be it.

Read more
Posted on the from Andre E
Daniel W.
Daniel W.
User
Best User of the month DEBest User of the month EN

@Andre E: The "Image Form" object is used, see

>> https://market.websitex5.com/de/objekte/150a3b44-14c7-428c-b16f-2a8ec98deb

I didn't buy the object myself, but according to the screenshots in the instructions, only the title and the label of the button can be adjusted, but not the field label.

Maybe the Incomedia staff can say on Monday if a change is possible or if it requires external Javascript code.

Read more
Posted on the from Daniel W.
Andre E
Andre E
Moderator

You are correct Daniel,

I have the object but that needs coding to change text or Inco needs to make changes.

I will check if i can make some coding, but a little busy at the moment.

Read more
Posted on the from Andre E
Incomedia
Eric C.
Incomedia

Hello Dag,
unfortunately these localizations are automated, but not yet in all languages, and cannot be modified directly through the object settings.
I remain available.

Read more
Posted on the from Eric C.
Andre E
Andre E
Moderator

I had some time, but did not succeed, maybe Kolasim can take a look?

Read more
Posted on the from Andre E
 ‪ KolAsim ‪ ‪
 ‪ KolAsim ‪ ‪
Moderator
Andre E
I had some time, but did not succeed, maybe Kolasim can take a look?

... wink ...

<script>
/** cambio nome campi input "image_form" x WSx5 by KolAsim **/
$(document).ready(function () { var tentativiK = 0; var maxTentativiK = 20; var intervalloK = setInterval(function () { var $el = $("[id^='pluginAppObj_'][id$='_visualform']"); if ($el.length && $el.is(":visible")) { cambianomeK(); clearInterval(intervalloK); } tentativiK++; if (tentativiK >= maxTentativiK) { clearInterval(intervalloK); } }, 500); /*K*/});
/**K**/ function cambianomeK(){ $('fieldset.name input').attr("placeholder","Namn*"); $('fieldset.surname input').attr("placeholder","Efternamn*"); $('fieldset.tel input').attr("placeholder","Telefon*"); $('fieldset.mail input').attr("placeholder","E-Post*");$('fieldset.btn-submit button[type="submit"]').text("Skicka");}
</script>

ciao

*

Read more
Posted on the from  ‪ KolAsim ‪ ‪
Dag J.
Dag J.
User
Author

Sorry,

I am not an expert of coding.... 

Where should I put this script?

Many, MANY thanks if it´s working. laughing

Read more
Posted on the from Dag J.
Andre E
Andre E
Moderator

Works great KolAsim!

Read more
Posted on the from Andre E
Dag J.
Dag J.
User
Author

So grateful for excellent work, my friends! laughing

And wish you all a Merry Christmas!

Read more
Posted on the from Dag J.