Hi,
If you did not include a language attribute of your participants in the participant table the survey starts in the base language.
If there is a language attribute the survey starts in this language.
And on the welcome page and on any other page the participants have the option to change the language.
So your approach is not necessary at all.
In my opinion a participant should be able to select his desired language.
But of course you can do what you want.
Remove the {SURVEYURL} placeholder and insert two links to your survey with the language parameters.
As the only "not static" parameter is the token you have to insert a {TOKEN} placeholder.
Something like:
Code:
<a href="https://www.myServer.com/limesurvey/index.php?token={TOKEN}&lang=en">Click for English survey</a>
<a href="https://www.myServer.com/limesurvey/index.php?token={TOKEN}&lang=sp">Haga clic para obtener la encuesta en español</a>
Joffm