remove the next and back buttons on qualtrics survey | XM Community
Skip to main content

How can I completely remove the "Back" and "Next" buttons in Qualtrics? I have auto-advance set up for the first part of my survey, where images are displayed for 3 seconds each, and I’m concerned that the buttons are distracting. In the second half of the survey, participants make a selection, and the survey auto-advances after they answer, so the buttons remain unnecessary and distracting throughout.

I’ve added JavaScript to hide the buttons (Qualtrics.SurveyEngine.addOnload(function() {
this.hideNextButton();
this.hidePreviousButton();
});) but the buttons reappear just before advancing to the next question. How can I prevent this from happening?

Use Custom CSS to hide the buttons. I think this will do it:

.Skin #Buttons { display:none; }

 


thank you


Leave a Reply