Welcome to the LimeSurvey Community Forum

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

Search Results (Searched for: survey title)

  • holch
  • holch's Avatar
05 Jun 2023 15:38
Replied by holch on topic Custom Logo scales down everything
Looks like it only affects the link in the navigation bar, but not the survey itself, because the title "Testbefragung" and the "Weiter"-Button don't seem to change. Is this correct?
  • Joffm
  • Joffm's Avatar
03 Jun 2023 15:02
Ja, schön,

nur: Das ist wieder einmal der Versuch, einen paper-pencil-Fragebogen in online zu pressen.
Kannst Du natürlich darstellen.
Q1a1 (Mehrfachnennung mit nur einer Teilfrage): Kennst Du "Heidi"?
Q1a2 (Langer Text) (eingeblendet, wenn Q1a1 ausgewählt wurde): Erzähl mal was"

Q1b1 (Mehrfachnennung mit nur einer Teilfrage): Kennst Du "Tarzan"?
Q1b2 (Langer Text) (eingeblendet, wenn Q1b1 ausgewählt wurde): Erzähl mal was"
Irgendwie so



Ist meines Erachtens nicht "das Gelbe vom Ei".
Dann könntest Du auch gleich nach dem Inhalt fragen, mit einer zusätzlichen Option "Ich kenne den Film doch gar nicht"
 

Wie Du siehst, wird das Textfeld im Fall der Fälle ausgegraut.
In beiden Fällen würde ich empfehlen, die jeweiligen Fragen mit den css-Klassen "no-question" und "no-bottom" optisch zusammenzufügen
Für das zweite Beispiel benötigst Du zusätzlich die css-Klasse "disable-irrelevant"

Hier einmal alle zusammen.
Code:
.disable-irrelevant.ls-irrelevant.ls-hidden{display:block;}
.disable-irrelevant.ls-irrelevant .form-control{background-color: #eee;cursor: not-allowed;}
.no-question{border-top:0;}
.no-question .question-title-container{display:none;}
.no-question .question-valid-container{display:none;}
.no-bottom{border-bottom:0;margin-bottom:0;}
.no-question .answer-container {
    padding-top: 0em;
    padding-bottom: 0.5em;
}
.no-bottom .answer-container {
    padding-bottom: 0em;
}
 


Dies müsstest Du in der Datei "custom.css" Deines erweiterten Themes hinzufügen und in der Frage selbst die jeweiligen Klassen im Feld "css-Klassen eintragen.
Da Du ganz am Anfang vermieden hast, die Fragen auszufüllen (gut, die Version hast Du nachgeschoben), können wir natürlich nicht wissen, ob Du überhaupt berechtigt bist, Themes zu bearbeiten.
Falls nicht, werden diese css-snippets einfach in den Fragetext (im Quellcode-Modus) geschrieben; dann aber mit umschließendem <style>...</style>

Bis dann
Joffm

Und zum guten Schluss.
Lies Dir dies einmal durch.
Der Autor war lange Zeit auch hier im Forum aktiv. Ich stimme ihm zwar nicht in allen Punkten zu, aber überwiegend.
 

File Attachment:

File Name: surveyfrie...6-03.zip
File Size:977 KB

 
  • tammo
  • tammo's Avatar
31 May 2023 21:05
I fully agree: a title for the respondents and a title for the developers of the survey may be different.

My use case: several surveys that must have the same title, but internally they are different waves in a research project.

Tammo
  • DenisChenu
  • DenisChenu's Avatar
31 May 2023 16:27
And navbar : github.com/LimeSurvey/LimeSurvey/blob/89...der/nav_bar.twig#L39

Usage of description in place for title
github.com/LimeSurvey/LimeSurvey/blob/89...ges/welcome.twig#L34


But right : i think have a Internal title (without language) and a real title for public user can be really a great feature.

Maybe you can ask this feature @BIFI_research community.limesurvey.org/feature-request/

Denis
  • BIFI_research
  • BIFI_research's Avatar
31 May 2023 09:46
Please help us help you and fill where relevant:
Your LimeSurvey version:  LS Cloud Version 5.6.23
Own server or LimeSurvey hosting:
Survey theme/template: bootswatch
==================
Hi there,

I tried to find something regarding the following topic, but I was not successful yet. I'm not sure if this belongs here or in the "Can I do this with LS?"-Section, please tell me if I'm wrong.

I want to achieve that my surveys basically have 2 titles: One working-title for me and my colleagues that is shown in the "surveys"-list. And another one that is shown in the tab/page title for the participants. Right now, I only know about the text element "survey title" that is used both for the internal and external view.

I presume there is a way to achieve this throug the theme configuration, but I have no expierience in CSS to find a solution myself. Does anyone have an idea how to get this done or where I can find more information on this?

Cheers,
Julius
  • yuto0419
  • yuto0419's Avatar
22 May 2023 02:05 - 22 May 2023 02:06
Please help us help you and fill where relevant:
Your LimeSurvey version: LimeSurvey Community Edition  5.6.9+230306
Own server or LimeSurvey hosting:Own Server
Survey theme/template:Fruity
==================
Hi!

I would like to create a simple page like the one below and implement a function to transition to Limesurvey.
<!DOCTYPE html>
<html>
<head>
    <title>simple php page</title>
</head>
<body>
    <h1>Hello, World!</h1>
    <form method="post" action="https::/~~~/LimeSurvey/index.php">
        <input type="submit" value="LimeSurvey">
 

But when I press the button I get "400: Could not validate CSRF token." error.
I have verified that the URL I set during operation is correct.
Please tell me how to transition to Limesurvey when I press the button.
 
 
  • Joffm
  • Joffm's Avatar
19 May 2023 10:45
Hi,
here you get the lss of my example.
As you did not answer the questions at the beginning, this example was created in version 5.x.
 

File Attachment:

File Name: limesurvey...4247.lss
File Size:35 KB

To merge the questions enter this at the end of your "custom.css" (of your extended theme)
Code:
.no-question{border-top:0;}
.no-question .question-title-container{display:none;}
.no-question .question-valid-container{display:none;}
.no-bottom{border-bottom:0;margin-bottom:0;}
.no-question .answer-container {
    padding-top: 0em;
    padding-bottom: 0.5em;
}
.no-question2 tr.ls-heading { display:none; }
.no-bottom .answer-container {
    padding-bottom: 0em;
}
  • yuto0419
  • yuto0419's Avatar
19 May 2023 09:40 - 22 May 2023 02:07
Please help us help you and fill where relevant:
Your LimeSurvey version: LimeSurvey Community Edition  5.6.9+230306
Own server or LimeSurvey hosting:Own Server
Survey theme/template:Fruity
==================
Hi!

I would like to create a simple page like the one below and implement a function to transition to Limesurvey.
<!DOCTYPE html>
<html>
<head>
    <title>simple php page</title>
</head>
<body>
    <h1>Hello, World!</h1>
    <form method="post" action="https::/~~~/LimeSurvey/index.php">
        <input type="submit" value="LimeSurvey">
 

But when I press the button I get "400: Could not validate CSRF token." error.
I have verified that the URL I set during operation is correct.
Please tell me how to transition to Limesurvey when I press the button.
 
  • Leithy
  • Leithy's Avatar
10 May 2023 11:55 - 10 May 2023 11:58
Please help us help you and fill where relevant:
Your LimeSurvey version: 6.x
Own server or LimeSurvey hosting: OWND
Survey theme/template: Vanilla Extended
==================

Hiya, I'm attempting to update a 5.x Vanilla Extended theme to 6.x and so far haven't been able to get a custom font working in 6.x - has anyone else succeeded?

Here's what I've attempted to do to get the font working in 6.x

config.xml, section   <font type="dropdown" category="Fonts" width="12" title="Fonts" parent="font">noto
            <dropdownoptions> <optgroup label="User browser"
==> Added <option class="font-CenturyGothic      " value="Century Gothic" data-font-package="">Century Gothic</option>

(in 5.x the config.xml customisation was simply<options>
<font>CenturyGothic</font>

custom.css
==> added font-face and font-family (same as 5.x)

@font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/CenturyGothic.eot');
    src: local('Century Gothic'), local('CenturyGothic'),
        url('../fonts/CenturyGothic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/CenturyGothic.woff2') format('woff2'),
        url('../fonts/CenturyGothic.woff') format('woff'),
        url('../fonts/CenturyGothic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

etc
.font-CenturyGothic{
    font-family: 'Century Gothic';

==> Uploaded the font, same place as 5.x (extended_theme_name/fonts)

So I've confirmed that CenturyGothic is presented and selected as the option in the Vanilla_Extended options and a browser tool check confirms that the custom.css file is recognised and contains the font when the survey loads but the font displayed is the default  - noto.

Anyone know if this is a default in my implementation (which was ok in 5.x) or is this a bug in 6.x?


 
Displaying 91 - 100 out of 100 results.

Lime-years ahead

Online-surveys for every purse and purpose