Change wording of certified questions | XM Community
Skip to main content
Solved

Change wording of certified questions

  • 5 July 2024
  • 2 replies
  • 32 views

Hi,

for our annual Employee Engagement survey we are using one of the guided solutions (EX25) with Qualtrics’ certified questions.

For two questions, we would like to slightly adapt the question wording (without changing the meaning of the question!).

For certified questions it is unfortunately not possible to chance question wording, unless you decouple the question (which has some other negative implications). Although I understand the reason, why the platform limits the changeability of question wording (e.g. to ensure the valitity of benchmarking), I still would like to adapt the wording a little bit - to better reflect specific terms and wordings used in our industry.

 

Is there any workaround for changing the question wording of certified questions?

 

On the question itself, I am not allowed to use JS. But I could add another blank question on the same page, which would hold the JS code.  

2 replies

Userlevel 7
Badge +39

On same page you can add another question and use below code to change.

Change the QID and Text

Qualtrics.SurveyEngine.addOnload(function()
{
/*Place your JavaScript here to run when the page loads*/
jQuery('#QID1 .QuestionText').text('Changed Text');
});

 

Userlevel 5
Badge +32

Thanks a lot, @Deepak !

Leave a Reply