Do not show header in the authenticator page | XM Community
Skip to main content
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!
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