Currently, I am using LimeSurvey 2.05 for administering a questionnaire using tokens.
I would like to change the text on the startpage (the page on which the token needs to be written, before getting access to the questionnaire).
What kind of files can be added in the editor (html-files, javascript, or other) and in which file can I add my own texts?
Or do I need to have access to the server in order to change this text?
The questionnaire is in Dutch, so I may need access to translation-files. Is that possible?
2) Add something like this to the end of template.js:
Code:
$(document).ready(function(){if($('#tokenmessage').length >0&& $('input#token').length >0){
$('#tokenmessage').html('Some new token input text.<br />And, some more text on a new line.');
$('label[for="token"]').html('New label for the input:');}});
Cheers,
Tony Partner Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.