Welcome to the LimeSurvey Community Forum

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

Search Results (Searched for: template)

  • Ernesto_Hong
  • Ernesto_Hong's Avatar
10 Apr 2024 23:30
Please help us help you and fill where relevant:
Your LimeSurvey version: b]6.5.2[/b
Own server or LimeSurvey hosting: oak.connect.gov
Survey theme/template: default
==================
My team has recently started using version 6.5.2. So far with this version of Lime Survey I found a few quirks that I do not believe have been addresses yet and were hoping to get some insight from the community.
  1. We found that we cannot view the Statistics menu if the array question, dual array, is within the structure of a survey. 
  2. The native function to export to PDF does not work. Our developer tried finding the issue using googles developer tools but no issue was found in the tool.
  3. Excel exports create a excel spreadsheet that shows numerous deprecated error logs that point towards the vendor. 
  4. There is inconsistency with responses from participants being recorded in a surveys response table. This tends to occur more than often in surveys that were created by importing a .lss file. If you create a survey through importing an .lss, then activate and run the survey, responses from participants are not always recorded the first time around. Some times participants need to retake a survey, or if you enable the ability to print response, they will need to save their responses themselves and then provide the copy they save after completing a survey. This would create a need for a manual process to log a survey participants responses, which is a pain.
  5. With image questions are wonky as well. You can copy and paste in image or download an image from a server to place in the question and/or answer. However, previews and live runs of the survey show broken image icons in their place instead of the intended images. When you double back to check the question under structure the images are displayed just fine in the question set up. 
  6. Captcha is completely faulty and does not work from what we have experience thus far. When enabled in a survey the input field appears but there is prompt string to enter. 
  7. The placeholder macro that can be found while entering text for your Text Elements, Email templates, and questions is buggy. You get 1 good use out of it and after that use, every RegExp entered by the placeholder macro outputs the RegExp for email only.
    We found a work around where you can save the first entry and then the enter the next placeholder, then repeat. Or you can enter them manually, but it's an inconvenience. 
  • leoroman
  • leoroman's Avatar
10 Apr 2024 18:52
Limesurvey CE in Altervista going slow was created by leoroman
Please help us help you and fill where relevant:
Your LimeSurvey version: 6.5.2
Own server or LimeSurvey hosting: Altervista 
Survey theme/template: Fruity
==================
Hi! I'm writing here because I have problems with Limesurvey CE installed on my Altervista free website. Altervista started loading some pages of limesurvey very slowly until eventually the browser gave an error page, and the only way to fix this is to reload the page. Also it doesn't send the invitation emails. It was doing good, but at some point without me changing anything besides some JavaScript functions it started doing this. Also I tried to install in a new Altervista account the latest version and it gives me the same problems even without any additional code but just the default one question form.
  • BBSR-SR5
  • BBSR-SR5's Avatar
10 Apr 2024 09:45 - 10 Apr 2024 15:37
That doesn't seem to work. I've just put it in my custom.css and theme_blueberry.css, but it doesn't seem to affect the radio buttons of the last column.

Looking at the inspector the class also isn't overwritten, but doesn't seem to appear at all.


Never mind, it does work. Thank you very much. Apparently I looked at a question using an old template version.

Sorry for the confusion.
 
  • MarianneLefebvre
  • MarianneLefebvre's Avatar
09 Apr 2024 22:10
SAVE ID in the end-url was created by MarianneLefebvre
Your LimeSurvey version: LimeSurvey Community Edition Version 5.6.13+230327
Own server or LimeSurvey hosting: Own server
Survey theme/template: Fruity
==================
The first part of my survey is here has survey ID 917799
and I would like to move to a second part with survey ID 648178, tracking the unique ID in the first part

In survey 917799, I have set-up the end URL as follows: limesurvey.univ-angers.fr/index.php/648178?lang=fr?var1={SAVEID }
but the end url becomes once moved to it: limesurvey.univ-angers.fr/index.php/648178?lang=fr?var1= %3Cspan%20class=%27em-expression%20em-haveerror%27%20%20%3E%3Cspan%20class=%27em-error%27%20title=%27%20%27%20%3E%3Cspan%20title=%27Variable%20non%20d%C3%A9finie%27%20class=%27em-var%20em-var-error%27%20%3ESAVEID%3C/span%3E%3C/span%3E%3C/span%3E

I had another try with creating a hidden equation with condition SAVEID2=sum(1000, SAVEDID) + create a passthrough field SAVEID2 +set-up the end-url with
?var1={PASSTHRU:SAVEID2}

It does not work neither.
When I check the SAVEID2 variable, it seems the {SAVEID} command does not work. Is it possible that this basic field is not available in the version I am using ?

Thanks for your help


 
  • BBSR-SR5
  • BBSR-SR5's Avatar
09 Apr 2024 16:01
Please help us help you and fill where relevant:
Your LimeSurvey version: Version 6.5.2
Own server or LimeSurvey hosting: LimeSurvey Cloud
Survey theme/template: modified Fruity 23 Blueberry Template
==================
Hello everyone,

I'm working on a custom navigation menu (for an organisation survey). For this purpose I'm trying to find out if a question has already been answered.

The "normal" question index menu has the following code:
Code:
{% for step, indexItem in aSurveyInfo.aQuestionIndex.items %}
                    {% set statusClass = '' %}
                    {% if attribute(indexItem.stepStatus, 'index-item-unanswered') is defined and attribute(indexItem.stepStatus, 'index-item-unanswered') == true %}
                        {% set statusClass = statusClass ~ ' index-warning' %}
                    {% endif %}
                    {% if attribute(indexItem.stepStatus, 'index-item-error') is defined and attribute(indexItem.stepStatus, 'index-item-error') == true %}
                        {% set statusClass = statusClass ~ ' index-danger' %}
                    {% endif %}
                    {% if attribute(indexItem.stepStatus, 'index-item-current') is defined and attribute(indexItem.stepStatus, 'index-item-current') == true %}
                        {% set statusClass = statusClass ~  ' disabled' %}
                    {% endif %}
                    <li class="list-group-item {{ indexItem.coreClass }}">
                        <a href='{{ indexItem.url }}' data-limesurvey-submit='{{ indexItem.submit }}'
                           class='dropdown-item  {{ statusClass }}'>
                            {{ indexItem.text }}
                        </a>
                    </li>
                {% endfor %}
This seems to check wether a question has been opened but not answered ('index-item-unanswered'), if a question is the currently opened question ('index-item-current') and some other attribute I don't know ('index-item-error')

Is it possible to see if a question is actually answered? 

Furthermore is it possible to see if a question is currently visible or filtered?

 
  • PatrickULiege
  • PatrickULiege's Avatar
09 Apr 2024 11:26
Your LimeSurvey version: Version 6.5.2
Own server or LimeSurvey hosting: LimeSurvey hosting
Survey theme/template: fruity
==================
Bonjour,
nous menons actuellement deux enquêtes en parallèle, une pour les membres du personnel et une pour les étudiants (enquête de déplacement au sein d'une université) avec des questionnaires légèrement différents pour chacun des publics.

Depuis le lancement de l'enquête, nous avons été alerté à deux reprises que des intitulés de questions avaient disparu et que seules les propositions de réponses apparaissaient.Et cela pour un seul des deux questionnaires, l'autre n'a pas connu de problème.

Nous avons donc dû, en catastrophe, réécrire chaque question (idem pour la traduction en anglais) et vérifier les conditions de chaque question.

Savez-vous qu'elle pourrait bien être l'origine de ce problème et quelle serait la solution pour que cela ne se reproduise plus?
Merci !
  • MariAngelesCalvo
  • MariAngelesCalvo's Avatar
08 Apr 2024 17:08
Please help us help you and fill where relevant:
Your LimeSurvey version: 6.5.2
Own server or LimeSurvey hosting: LimeSurvey hosting
Survey theme/template: Vanilla, Bootswatch or Fruity
==================
HI! 
I have recently updated LimeSurvey to 6.5.2 version and my theme templates are no longer usable. I need to change the background colour of the "navbar", "navbar-brand", "question.title/valid" elements (the background colour of the question text), but using the codes and actions from previous versions is not working. E.G.:

Theme editor --> Custom.css/Theme.css: ".navbar .navbar-brand { background-color: #FFFFFF }

Do you know what codes I can use to change the background colour of these elements in the "Vanilla", "bootswatch" or "fruity" themes? Where should I insert them?

Thanks for your help!

Best regards,
Mª Ángeles. 

https://drive.google.com/file/d/1--Lvvu43XRnogi7ODCFiELoyeyW8luGO/view?usp=drive_link
[img
  • frosch
  • frosch's Avatar
08 Apr 2024 14:55
Bitte helfen Sie uns, Ihnen zu helfen und füllen Sie folgende Felder aus:
Ihre LimeSurvey-Version: 6.4.3
Eigener Server oder LimeSurvey-Cloud: eigener Server
Genutzte Designvorlage: custom
==================
Hi,

ich möchte ich Footer der Umfrage Texte übersetzen und habe mir dazu eine json-Datei angelegt. Diese wollte ich im Template einbinden, jedoch benötige ich json_encode um auf die Daten zuzugreifen.

in der Doku steht ganz unten ein Hinweis, doch dann bekomme ich die Fehlermeldung: "LSYii_Application.twigRenderer" is not defined.
manual.limesurvey.org/Theme_editor_-_Ava...P_included_functions

Kann mir da jemand weiterhelfen? Gemeint ist doch die config.php in application/config/config.php oder? Muss ich noch etwas hinzufügen?
  • cavo789
  • cavo789's Avatar
08 Apr 2024 14:22 - 08 Apr 2024 14:26
Please help us help you and fill where relevant:
Your LimeSurvey version: 6.2.4
Own server or LimeSurvey hosting: Own server
Survey theme/template: standard (not changed)
==================
Hello all

Can you guide me please, in LS 6.2.4, in the administrator interface, I've dropdown menus that don't appear in the foreground but "behind" other DOM elements like the horizontal scrollbar.  This on Edge and Chrome.

This is an out-of-the-box installation of LimeSurvey.

Can you help please?  

(I've seen my version is no more up-to-date so if you know it's solved in a later version, I'll then deploy it on my servers (DEV->UAT->PROD).)

Thanks !

 

(for info, by using the CSS selector, getting the parent area then replacing min-height:: 300px to 800px; I can see the list but I can't ask this to my business users ;))

 
 
  • BBSR-SR5
  • BBSR-SR5's Avatar
08 Apr 2024 09:59
Please help us help you and fill where relevant:
Your LimeSurvey version: Version 6.4.12
Own server or LimeSurvey hosting: LimeSurvey Cloud
Survey theme/template: Customised fruity_23 Blueberry
==================

Hi everyone,

sorry if my google-fu has failed me. I have the following problem. I want to rotate items in my matrix question, but I have 1-2 "difficult" items, which should never be shown at first place (or optimally in the top half of the matrix). The reason for this is that we want to avoid priming our respondents with something they might perceive strongly negative. Especially since it isn't the main topic of our survey but needs to be asked anyway.

I want to create a custom rotation where I can make sure certain items only get put into the rotation pool after a certain amount of other items (optimally half of them) has already been placed.

I hope this is possible.
  • Maurinfla
  • Maurinfla's Avatar
08 Apr 2024 08:46 - 08 Apr 2024 11:39
Please help us help you and fill where relevant:
Your LimeSurvey version: 3.22.28+200728
Own server or LimeSurvey hosting: Own server
Survey theme/template: Plain_redesign2018_1
==================I'm having trouble with a mandatory question in my LimeSurvey that uses a multiple numerical scale. The question is set to be mandatory, but when testing the survey:
  • If a participant clicks "Next" without selecting an answer on the scale, the page reloads.
  • However, the scale itself doesn't function properly. Participants are unable to click and select a value on the scale.
I've ensured the question is set as mandatory, but there seems to be a bug preventing participants from selecting an answer. I've tested across browsers/devices. I've attached an example of the scale when it's reloaded. Any suggestions on what might be causing this or potential fixes would be greatly appreciated!
  • mapage
  • mapage's Avatar
07 Apr 2024 09:25
Please help us help you and fill where relevant:
Your LimeSurvey version: LimeSurvey Community Edition Version 6.5.2+240402
Own server or LimeSurvey hosting: hosted home (nas)
Survey theme/template: n/a
==================
Sorry for the basic question but I am using JSON-RPC api's to retrieve user token responses.
As subdomain requester is not the same, I had to activate "Définir l’entête Access-Control-Allow-Origin :" = Oui in order to make it works and it was fine, I could got the sessionKey and retrieve the answers based on a token until yesterday, when I did the update to the last version.
In order to solve this, I tried to restart webserver, activate/deactivate the option to Yes/No again and save the setup.
Unfortunately without any results, as I am a generalist but not expert enough to debug all of this without help.
I could not find specific information on the manual, maybe I was searching on the wrong place.
Does something change in JSON-RPC way of working or pages ? Where to find theses specific pages ? I am interested to better understand this as my scope would like to restrict access as explained in the  developer.mozilla.org/en-US/docs/Web/HTTP/CORS  documentation : Access-Control-Allow-Origin: foo.example .
Thanks a lot in advance.
C.

PS : same request in a local tool works fine (used insomnia)
  • rajkumar_dms
  • rajkumar_dms's Avatar
06 Apr 2024 14:30
Unable upload Question Themes was created by rajkumar_dms
Please help us help you and fill where relevant:
Your LimeSurvey version: 6.4
Own server or LimeSurvey hosting:
Survey theme/template:
==================
Hello,
Good Day

When i downloaded question themes from  gitlab.com/SondagesPro then try to import in question themes some show attached error, i also try to add compatibility 6 also getting error 
Please help how to to import these themes successful 

 
  • innovator
  • innovator's Avatar
06 Apr 2024 06:55
Please help us help you and fill where relevant:
Your LimeSurvey version: Version 5.6.57+240312
Own server or LimeSurvey hosting: Limesurvey hosting
Survey theme/template: ranking advanced
==================
Hello! I am reaching to inquire if I can create a drag and drop feature, potentially by adding more columns/rows to the ranking advanced question type. It would be ideal for my survey design where I prompt survey respondents to categorize certain statements.
  • neismark
  • neismark's Avatar
05 Apr 2024 06:57 - 05 Apr 2024 07:04
Please help us help you and fill where relevant:
Your LimeSurvey version:   6.5.2+240402
Own server or LimeSurvey hosting: Own server (Ubuntu 22.04.3 LTS (Jammy Jellyfish), Apache-2.4.52)
Survey theme/template: Fruity TwentyThree
==================

There is no survey settings menu. It just does not appear. If I click on the "Structure" button, I can view my question group / question structure. But clicking on the "settings" tab (in German: "Einstellungen") just shows empty space on the left where the settings menu should appear. There is no arrow icon or any other thing I could use to change that.

A fresh install of lime survey  limesurvey6.4.4+240130.zip on a brand new Linux system didn't work and today's update to limesurvey6.5.2+240402.zip didn't work either.

What is wrong here?
Should I switch back to Lime Survey 5.x? 

Regards, 
Mark
Displaying 91 - 105 out of 1248 results.

Lime-years ahead

Online-surveys for every purse and purpose