problems with URL - by: VikDCP
problems with URL - by: Joffm
Joffm
Forcing question IDs? - by: LouisGac
API: Invite participants to a survey - by: davebostockgmail
New token created in survey 146297:
TID - 23
Token - B4ULIxdu2CpvDi7
Array ( [23] => Array ( [name] => Test Drive Customer => test@test.com [status] => fail [error] => Message body empty SMTP debug output: ) [status] => 0 left to send )[email] => This email address is being protected from spambots. You need JavaScript enabled to view it. [status] => fail [error] => Message body empty
SMTP debug output:
) [status] => 0 left to send )
Scoring throughout survey - by: DenisChenu
Yes, maybe but … in general : assesment is totally Survey relatedLouisGac wrote: also in LS3 you can customize the display and calculation of assessments at the theme level:
github.com/LimeSurvey/LimeSurvey/blob/ma...ges/assessments.twig

It's a feature request

problems with URL - by: DenisChenu
publicurl: This should be set to the URL location of your 'public scripts'. The public scripts are those located in the "limesurvey" folder (or whatever name you gave to the directory that all the other scripts and directories are kept in). This settings is available in config.php and it is used when token emails are sent.

Multiple choice table - Discrete choice Models - by: tapinho
Multiple choice table - Discrete choice Models - by: tpartner
It sounds like you have the XSS filtered - manual.limesurvey.org/Workarounds:_Manip...tc..29_in_LimeSurveyUnderneath the "Banana&Apple" table, I get the following code:
Dollar and percent signs - by: jimdavies
Does the structure of questions and answers remain the same?
How can I make my developers comfortable with updating.
Are release notes available?
API: Invite participants to a survey - by: tpartner
Autocompleted Address breakdown into multiple fields - by: davidg1982
Dollar and percent signs - by: jimdavies
Dollar and percent signs - by: DenisChenu
No change on table namejimdavies wrote: Is there an option to rollback , my developers are concerned they may have to rewrite code. Would the backend tables on MySQL in the same format as my current version (IE Lime_tokens_###, Lime_survey_###).
Yes excepot for minor part maybe.jimdavies wrote: Does the structure of questions and answers remain the same?
You can't …jimdavies wrote: How can I make my developers comfortable with updating.
My experience:
1. All css/js public hack must be rewrite a little
2. All template must be redone from scratch
3. Remote control API is OK : no major change
4. All plugins need minor or major update (major if there a public view part)
github.com/LimeSurvey/LimeSurvey/blob/ma...cs/release_notes.txtjimdavies wrote: Are release notes available?
But global warning : current 3.X version can have specific issue for your survey. Then need testing before updating. And need updating to minor version once a month at minimum.
Maybe there are a topic for a fix in 2.5X on the forum. It's only some css

I think yes … but error can happen when you update again (for new survey) for sure.Can I rollback if I update?
API: Invite participants to a survey - by: DenisChenu
(keep same major version)
Without any warantee

HowTo Filter the Columns of an Array (Numbers) - by: ArriFerrari
In case anyone else is trying to get this working, make sure your multiple choice column filter question is "Optional"
You can work around this by setting the minimum number of responses to 1 for multiple choice questions.
It's also important to note that the column filtering question must be in a different question group that comes before the array you want to filter. It will not work if you put the filtering question in the same question group as the table.
I'm working in Limesurvey 2.73.1
LimeSurvey in comparison to Questionpro - by: emmawilliam
HowTo Filter the Columns of an Array (Numbers) - by: DenisChenu
Yes, it's only a javascript solution … more a hack currently.ArriFerrari wrote: I found that the plugin also breaks if the column filter multiple choice question was marked "Mandatory"…
Record timing and limit time to answer set of questions - by: spalan
I am asking participants to answer as many of two sets of questions as they can manage in two minutes per set, and I need to record how long they take to answer each question.
Let me explain in some more detail. I set my survey to question-by-question mode and activated timing, so that LimeSurvey records the time taken to answer each question. This works fine.
The harder part is that I have created a series of questions (Q001, Q002, Q003,..., Q100) and participants should answer them one after the other, but the survey should automatically move on after they have spent 2 minutes answering these questions, irrespective of how many they have managed to answer. Then, they have to do the same thing again with another set of questions (Q101, Q102 ...). How do I get LimeSurvey to move them on to the next set of questions after a certain time?
I found a solution for setting a time limit for a question group ( https://www.limesurvey.org/forum/can-i-do-this-with-limesurvey/114932-time-limit-for-question-groups-or-whole-survey ), but if I follow this suggestion, put my questions into a group and set LimeSurvey to group-by-group mode, I can no longer record the exact time taken to answer each question.
I would be grateful for your help!
Best,
Stefan.
PS: We are running LimeSurvey Version 2.05+ Build 150508.
API: Invite participants to a survey - by: davebostockgmail
Will this script work for a 3.xxx version?
Cheers
Dave
Automatically proceed to next question after selecting answer - by: Siem
tpartner wrote: Try this for 3.4.x:
<script type="text/javascript" charset="utf-8"> $(document).ready(function(){ $('#question{QID} input[type="radio"]').on('click', function() { $('#ls-button-submit').trigger('click'); }); }); </script>
I upgraded from Version 2.x to Version 3.13.2+180709, obviously the original V2 code didn't work anymore.
Unfortunately the above solution doesn't do the trick for me either. I tried adding it to head.twig, custom_header.twig and nav_bar.twig and it shows up in the source code.
Am I adding it to the wrong file, if not how can I get this to work?