Welcome to the LimeSurvey Community Forum

Ask the community, share ideas, and connect with other LimeSurvey users!

Search Results (Searched for: template)

  • ritapas
  • ritapas's Avatar
28 Mar 2024 11:52
default value for datetime was created by ritapas
Please help us help you and fill where relevant:
Your LimeSurvey version: 3
Own server or LimeSurvey hosting: own
Survey theme/template: n/a
==================
hello,
is there a way to set a default value for a date/time question?
If I put something like: '30.03.2024' (with or without quotes) I get this error:
Code:
CDbCommand ha riportato un errore nell'esecuzione della query SQL: SQLSTATE[22007]: Invalid datetime format: 1292 Incorrect datetime value: ''06.03.2024'' for column

thank you

 
  • liuinhsanhalt
  • liuinhsanhalt's Avatar
28 Mar 2024 11:41
set an existing survey as a template was created by liuinhsanhalt
Please help us help you and fill where relevant:
Your LimeSurvey version: [see right hand bottom of your LimeSurvey admin screen] version 5.6.15
Own server or LimeSurvey hosting: own Server
Survey theme/template: fruity
==================
Hi everyone! How to set one survey to model or templates, this template can be view and copied by other users. the target is set an existing survey as a template, and to give other users the ability to add or modify new content based on it, which reduces the time to create a survey, thanks!
  • rbnbchr
  • rbnbchr's Avatar
28 Mar 2024 08:50
Please help us help you and fill where relevant:
Your LimeSurvey version:  3.17.1+190408
Own server or LimeSurvey hosting:
Survey theme/template:
==================
Hello everyone,

I have created a survey (which is NOT yet active) where the base language is set to German (informal). Now I should change the base language to German (the formal one).

In older posts it was pointed out that this is not possible. But is there perhaps a way to change the base language now?

Thank you!
  • jcpsarsi
  • jcpsarsi's Avatar
27 Mar 2024 19:52 - 27 Mar 2024 20:05
Query response table to check record was created by jcpsarsi
Please help us help you and fill where relevant:
Your LimeSurvey version: 5.6.57
Own server or LimeSurvey hosting: limequery hosting
Survey theme/template: vanilla
==================
Dear all,

I need to create an intake form for services with the following feature:
  1. An applicant fills out a question asking for the email
  2. Next, a query will be sent to the response table to see whether the applicant has applied for services.
  3. On the next question, only the services the applicant has not applied for will be displayed for selection
Is this possible? Thanks!

 
  • holch
  • holch's Avatar
27 Mar 2024 18:16
Replied by holch on topic shop in limesurvey
What is the "ordering side"? What is the "administrative side"?

Show us a small example of what you are doing as LSS file.

how do you send it via email?

You probably need to customize your email template, but show us what you are doing, then we can help much better.

Do not send the whole survey, create a small sample that shows the issues.
  • holch
  • holch's Avatar
27 Mar 2024 18:08
Replied by holch on topic need help with Emoji Answers
Please answer the questions at the beginning:
===========================
Please help us help you and fill where relevant:
Your LimeSurvey version: [see right hand bottom of your LimeSurvey admin screen]
Own server or LimeSurvey hosting:
Survey theme/template:
===========================

You told us which version you used in the past, but not which version you currently use.
  • estupendu
  • estupendu's Avatar
27 Mar 2024 16:51
LimeSurvey not working after PHP update was created by estupendu
Please help us help you and fill where relevant:
Your LimeSurvey version: 3.28.77
Own server or LimeSurvey hosting: Own Server
Survey theme/template: Irrelevant
==================
I have LimeSurvey installed on a centos server with linux.
Yesterday I made changes on PHP (7.3.33) and now I can only open the login page but I can't access the console.
Anyone ever happened something similar. Any ideas?
  • bunty.hardcastle
  • bunty.hardcastle's Avatar
27 Mar 2024 16:38
Please help us help you and fill where relevant:
Your LimeSurvey version: 6.4.12 from 5.6.57
Own server or LimeSurvey hosting:  LS hosting
Survey theme/template: Bootswatch (extended)
==================
Hi
I'm just upgrading from v5 to v6 and this part of my question no longer works as expected.
The question asks about a piece of audio, so the audio needs to play for 3 seconds before the question appears, so that the participant has had time to hear some of the audio. 

So the survey waits for 3 seconds following the handleFirstPlay being delivered from the html audio player and then removes the 'hidden' class from the question.
The audio player is presented in the group and the js below is run in the first question of the group (survey presented group by group.)

In v5 this works perfectly, in v6, the question is presented before the audio even begins playing. 

The 'hidden' class is definitely added, and this class is working on other parts of the question, but it's no longer working here.

FYI: Filter HTML for XSS is switched off to allow js to run.

What has changed in the update that may cause this, and what's the solution?

Here's the code from the group source:
p><b>How do you feel about this genre of music?</b>(If the audio doesn't start automatically, press PLAY to start)</p>
<audio autoplay="" controls="" onplay="handleFirstPlay()" src="{AUDIOFILELOCN}SONGQ01.mp3"> </audio>

Here's the code from the question source:
<script type="text/javascript">
var hasitrun;
   // Function unhide the first Q three secs after the player is played
    function handleFirstPlay() {
      if (hasitrun != 1) {
        hasitrun = 1;
        if ($('#question{QID}.question-container:visible').length == 0) {
          $('#question{QID}').hide().delay(3000).removeClass('hidden').fadeIn(300);
        }
      }
    }
</script>

Group LS file attached.
  • okkhalid
  • okkhalid's Avatar
27 Mar 2024 16:30
need help with Emoji Answers was created by okkhalid
Please help us help you and fill where relevant:
Your LimeSurvey version: [see right hand bottom of your LimeSurvey admin screen]
Own server or LimeSurvey hosting:
Survey theme/template:
==================
(Write here your question/remark)
Hello, in the past, we used 2.7 lime survey, and we posted this:
forums.limesurvey.org/forum/can-i-do-thi...113488-emoji-answers

We are not upgrading the last version, but the same code is not working anymore in the css.

we use have emjoy for the radio list, we have only few answers there.
so we added: with-emoji under each radio type question, under css classs, see attached.
 
then we applied this code to the templete css file:
Code:
.with-emoji .radio label::before,
.with-emoji .radio label::after {
  display: none;
}
 
.with-emoji .radio .label-text img {
  border: 4px solid #FFFFFF;
  box-sizing: content-box;
  -moz-transition: border-color 350ms ease; 
  -o-transition: border-color 350ms ease; 
  -webkit-transition:border-color 350ms ease; 
  transition: border-color 350ms ease;
}
 
.with-emoji .radio .label-text:hover img {
  border-color: #ECF0F1;
}
 
.with-emoji .radio input[type="radio"]:checked + label + .label-text img {
  border-color: #233140;
}
 

Everything is working.
 

now after the upgrade, we did the same steps but its not working, please kindly help if you can.
  • BBSR-SR5
  • BBSR-SR5's Avatar
26 Mar 2024 17:10
Bitte helfen Sie uns, Ihnen zu helfen und füllen Sie folgende Felder aus:
Ihre LimeSurvey-Version: Version 6.4.12
Eigener Server oder LimeSurvey-Cloud: LimeSurvey Cloud
Genutzte Designvorlage: custom_fruity_twentythree (Blueberry)
==================
Hallo allerseits,

ich würde gerne die Navigationsbuttons in meiner Umfrage etwas mehr in die Mitte rücken und auch näher an den Frageblock heranrücken.
 

Wie mache ich das am besten? Ich habe schon etwas gegoogelt, aber in den alten Threads wird eine Navigator.twig angesprochen, die ich in dem Template aus meiner Version nicht finde.
 

Wie kann ich dennoch die Buttons mehr zentralisieren und näher an den Fragekorpus heranbekommen?
  • BBSR-SR5
  • BBSR-SR5's Avatar
26 Mar 2024 16:29
Bitte helfen Sie uns, Ihnen zu helfen und füllen Sie folgende Felder aus:
Ihre LimeSurvey-Version: Version 6.4.12
Eigener Server oder LimeSurvey-Cloud: LimeSurvey Cloud
Genutzte Designvorlage: custom_fruity_twentythree (Blueberry)
==================
Hallo allerseits,

ich möchte gerne meine Skala im Mobilen Modus so definieren, dass die Zahlen links stehen, aber im PC Modus unten. Ist es möglich den Text der Antwortoptionen abhängig vom Modus/der Bildschirmbreite anzeigen zu lassen?

 

Also:
0 überhaupt nicht betroffen
1
2
3
...
  • BBSR-SR5
  • BBSR-SR5's Avatar
26 Mar 2024 16:19
Thank you, this works great. I'm really starting to build a standard template for our surveys here that we can recycle for future projects.

Anyway I still have one minor issue. When I try to make the text in the final column cursive, (either wit <i> or <em>) , it hides the text in mobile mode. How can I fix this?

Normal:
 

Mobile:
 
  • Mooogaaa
  • Mooogaaa's Avatar
26 Mar 2024 15:12
Please help us help you and fill where relevant:
Your LimeSurvey version: 6.4.12 [see right hand bottom of your LimeSurvey admin screen]
Own server or LimeSurvey hosting:
Survey theme/template:
==================
Hello, I have encountered a problem. When I am performing a simple mathematical multiplication calculation, if I input 90 in Q0, the data I get in next question (1.4*Q0) is not 126, but 125.99999999999999, as shown in the following figure. I have not encountered this situation at any other time. But I am very concerned that similar situations may occur in the future. Although this has a small actual calculation error. But for the respondents, they will be very confused about this number. How can I avoid this situation? Thank you all

 
  • achecchini
  • achecchini's Avatar
26 Mar 2024 14:07
Please help us help you and fill where relevant:
Your LimeSurvey version:  LimeSurvey Community Edition   Versione 5.6.57+240312
Own server or LimeSurvey hosting: Own
Survey theme/template:
==================

Hi to all dear community!
I have recently installed the Lime survey version: Community Edition Versione 5.6.57+240312; try to control the installation is  OK.

I have an issue with images upload from the resource menù of a survey. 

If I try to upload a previus zip files exported from another survey I have the error:Request Entity Too LargeThe requested resource
/index.php/surveyAdministration/importsurveyresources
does not allow request data with POST requests, or the amount of data provided in the request exceeds the capacity limit.

AND 400: richiesta errataIl token CSRF non puo essere verificato.The same if I try to upload with KCFinder some images all together (not if I upload them one by one).

Maybe this an error due by misconfiguration of parameters in config.php ?? And if so where I must change this parameters?

Thanks in advance for any appreciated help!!

Agoz
 
  • lukasleopold
  • lukasleopold's Avatar
26 Mar 2024 12:24 - 26 Mar 2024 12:26
Entry and exit animations for question was created by lukasleopold
Please help us help you and fill where relevant:
Your LimeSurvey version:  LimeSurvey Community Edition  Version 6.5.0+240319
Own server or LimeSurvey hosting: Own server
Survey theme/template: fruity (extended)
==================
I have been trying to add both an entry (e.g. FadeIn) and an exit (FadeOut) animation to questions. In the survey theme options for fruity, I can select FadeIn, which animates the question container when it is rendered on the screen; or FadeOut, which animates the container when I succeed to the next question/group (upon clicking the button). So I feel that it might be possible to have both animations (FadeIn triggered upon rendering, FadeOut triggered upon button click), but in the theme options, I can only select one.

What I tried so far:
 I tried selecting FadeOut in the theme options, and adding the FadeIn animation manually into the custom.css,
Code:
.fruity .question-container {
    animation: fadeIn 0.5s;
}


but apparently the custom.css overwrites the theme option. Next, I tried finding the code that triggers the animations (FadeIn on rendering, FadeOut on button click) to get an idea of what custom JS for this might look like, but I couldn't find anything (JS and PHP noob here! :-( )

Do you have any ideas on how to do this, or can point me into the right direction?

Best,
Lukas
Displaying 136 - 150 out of 1248 results.

Lime-years ahead

Online-surveys for every purse and purpose