Is there a way to add text with hyperlink to the scoring results page? | XM Community
Skip to main content
Solved

Is there a way to add text with hyperlink to the scoring results page?

  • September 12, 2018
  • 5 replies
  • 29 views

Forum|alt.badge.img+1
Hi I'm implementing a scorig mechanism in my survey, and wondered whether I can edit the scoring results page. I want to add there some sentences and a link, directing the participants to the material that would help them to answer better the next time they take the survey. Is there any way to edit this page? Thanks!

Best answer by Anonymous

Hello @yinbar , Paste the following code in the "look and feel" -> Advanced -> header(edit) -> Html view(<>): <script> Qualtrics.SurveyEngine.addOnReady(function() { if(jQuery(".TotalScore").length>0){ jQuery("#SkinContent").append('<p>Line one</p><p>Line Two</p><a src="https://www.qualtrics.com/community/">Link</a>'); } }); </script> Replace the line one, line two, link according to your need. The above code will add lines after the scoring summary.

5 replies

MohammedAli_Rajapkar
QPN Level 5 ●●●●●
Forum|alt.badge.img+20
You can create your own page and show that as a scoring result page. Do not use the default one which shown here. https://www.qualtrics.com/support/survey-platform/survey-module/survey-tools/scoring/#DisplayingTheScoreForRespondents instead create a descriptive text question, piped-text the score in it and add whatever sentences and link you want to show to the respondent.

  • September 12, 2018
Hello @yinbar , Yes, you can do that by adding custom end of survey message from the survey flow or from the survey options -> survey termination option. Your custom end of Survey message will appear first and then Scoring summary

Forum|alt.badge.img+1
  • Author
  • September 12, 2018
Thanks @Mohammedali_Rajapakar_Ugam ! Actually - I like the design of the default scoring page and the fact that they display the correct and incorrect answers.... Is there any what to export it to another page? Or add to their my text?

Forum|alt.badge.img+1
  • Author
  • September 12, 2018
Thanks @Shashi ! But what if I want to have a scoring page after each block of questions? End of survey message appears only in the end of the survey, right? Or is there a way to have it in the middle and then continue with the rest of the survey?

  • Answer
  • September 12, 2018
Hello @yinbar , Paste the following code in the "look and feel" -> Advanced -> header(edit) -> Html view(<>): <script> Qualtrics.SurveyEngine.addOnReady(function() { if(jQuery(".TotalScore").length>0){ jQuery("#SkinContent").append('<p>Line one</p><p>Line Two</p><a src="https://www.qualtrics.com/community/">Link</a>'); } }); </script> Replace the line one, line two, link according to your need. The above code will add lines after the scoring summary.