How do I remove language options after 1st page? | XM Community
Skip to main content
Solved

How do I remove language options after 1st page?

  • February 2, 2021
  • 2 replies
  • 498 views

Hello, I have a survey in 2 languages (English/Spanish). The language option appears on every page of my survey. How can I make it only appear on the 1st page? I don't want participants to be able to change the language once they start the survey.  I was told to reach out to this community because it would require a custom code.

Best answer by PraDeepKotian_XM

Hi Isaguirr1821
Add below code in survey question on which you would like to show the language drop down

	jQuery("#Q_lang").show();

Add below code in Look & Feel -> Style->Custom CSS:
#Q_lang {
display:none;
}
Hope this helps.
Note: Please test the survey link before going live.

2 replies

ElieD
QPN Level 4 ●●●●
Forum|alt.badge.img+39
  • QPN Level 4 ●●●●
  • February 3, 2021

Hi Isaguirr,
Giving the option to change the language is a good practice in survey industry.
The survey language doesn't have an impact on the results so you should avoid to mask it on the subsequent pages.


PraDeepKotian_XM
QPN Level 5 ●●●●●
Forum|alt.badge.img+21
  • QPN Level 5 ●●●●●
  • Answer
  • February 19, 2021

Hi Isaguirr1821
Add below code in survey question on which you would like to show the language drop down

	jQuery("#Q_lang").show();

Add below code in Look & Feel -> Style->Custom CSS:
#Q_lang {
display:none;
}
Hope this helps.
Note: Please test the survey link before going live.