Please help us help you and fill where relevant:
Your LimeSurvey version: 5.x
Own server or LimeSurvey hosting:Own
Survey theme/template: Vanilla extended
==================
Hi there - quick question about the correct reserved string to use for survey description in theme twig files.
Issue: We use the text element titles of surveys differentiate versions, launch dates etc that we wish to hide and replace with more user friendly titles
Suggested implementation: Record our user friendly title in the description field (being mindful of character length) and alter our extended Vanilla theme to display the description field where the title field would go normally
Question: In head.twig what is the correct reserved string name for description - is it as simple as?:
From
Code:
<title>
{{ processString(aSurveyInfo.surveyls_title,1) }}
</title>
To
Code:
<title>
{{ processString(aSurveyInfo.surveyls_description,1) }}
</title>