Require poll questions

Our Marketing team is relatively new to Pendo and last week, May 17th, we launched our first poll and we are running into a couple issues:
  1. The poll consists of 4 steps and it seems that the response to Step 3 and 4 are not being recorded. It seems to only be recording the questions from steps 1 and 2 and not 3 and 4. Is there a reason for this?
  2. Also, it appears as though viewers of the poll can skip questions. Is there a way to require answers to poll questions? At least in order to move onto the next step?
4

Comments

8 comments
  • Hey Amber,

    You would need to add in a custom code block in order to accomplish this. Here's a document that runs through the step by step of how to set this up.

    In summary, you would add in some CSS and Javascript that would detect the "[REQUIRED]" tag and it will only allow users to move forward to the next step if it's filled out. 

    3
  • Hey Lina Karlsson 

    I see what you mean, I tested it on my account and although the preview doesn't display the question, it does look like it's showing up properly in production. Here's a video I made testing it. I'll follow up with our team and let them know to check on preview mode.

    2
  • Hi Angus,
    I did try this and it was very easy to implement. In the Designer everything looks the way I'd expect.

    When I do the preview I'm expecting it to look the same as in the Designer, but with the "[REQUIRED]" tag removed. What actually happens is that the whole question is removed, and so is the small text which indicates that a question is required. So, for a required number scale poll question, only the number scale shows in the preview. 

    Could this be a bug in the code?

    1
  • Hi Angus, thank you so much, I will give this a try!

    0
  • Hi Angus Yang, I appreciate you following up on this. I actually took help from a developer to fix the code to work in preview and in production, but it does look a little bit different in production than in the preview. Would be great if we could trust that it looks the same in both. Thanks!

    0
  • Oh interesting, would you mind sharing what the fix was? 

    0
  • Sure!

    Since the preview mode changes the elements so that the question text contains more HTML and not just text, the innerText wiped the content. Replacing it with innerHTML on line 40 works.

    That is:
    requiredQuestions[i].innerText = requiredQuestions[i].innerText.replace("[REQUIRED]", "");
    to
    requiredQuestions[i].innerHTML = requiredQuestions[i].innerHTML.replace("[REQUIRED]", "");

    Also, since the element structure differs, the double .parentElement.parentElement on line 36 and 38 made the "* required" end up in the wrong place. Removing one .parentElement in each row makes the * Required show up, but they are in different places in the preview and in production. 

    0
  • For the Pendo Guide > Poll Responses 

    I added some "Required" poll questions + the prompt is public as of yesterday, but there are no poll responses to the questions. Any advice on that Angus Yang

    Thx! 

    0

Please sign in to leave a comment.

Didn't find what you were looking for?

New post