Do not show header in the authenticator page | XM Community
Solved

Do not show header in the authenticator page

  • 12 September 2018
  • 1 reply
  • 22 views

Userlevel 1
Badge +1
Hi
I'm adding a header that uses the email entered in the authenticator page as an identifier (as header which looks like: "This survey is taken by...., any other users please click here") .
Currently my header appears on every page, even on the page of the authenticator (the first page). Is there a way to not show the header there? I saw some similar thread at https://www.qualtrics.com/community/discussion/comment/6229#Comment_6229
but in my case I cann't edit the "hidden" page because it is the authenticator one.
Thanks!
icon

Best answer by TomG 12 September 2018, 23:09

View original

1 reply

Userlevel 7
Badge +27
Add the following JavaScript to your Authenticator prompt text message (if you don't have an Authenticator prompt text message, add one to your library):
```
<script>
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#HeaderContainer").hide();
});
</script>
```

Leave a Reply