Popup repeated display | XM Community
Solved

Popup repeated display


I have a popup on a site that currently only displays once to a given user. I need to make it so that the popup displays three times per user, unless they take the target survey. If they take the target survey. they should not see the popup again.
icon

Best answer by Matt_Christie_Walker 8 May 2018, 03:51

View original

2 replies

Userlevel 4
Badge +5
I haven't tested this, but it seems like you would want to use a combination of events and cookies to accomplish this. Your logic might look something like:

1) If popup is displayed to user for the first time, add a cookie called popupCount and set value to 1
2) If popup is displayed second time, modify cookie popupCount, set value to 2
3) If popup is displayed third time, modify cookie popupCount, set value to 3
4) If user takes target survey, create cookie startedSurvey, set value to true.

Display popup only if startedSurvey is not true AND popupCount is less than 3.

Some reading material for you: https://www.qualtrics.com/support/website-app-feedback/intercepts-tab/edit-intercept-section/action-set-options/adding-event-tracking-triggering/#TriggeringanEvent
Thank you! I will definitely try this!

Leave a Reply