Hi, I'm trying to set up an audience rule to display an UI element until users interact with it, then hide it. Is there a way to do that in absence of a DMP?
Solved! Go to Solution.
Hi @a_hulshof ,
Trigger below code on click of UI element. Profile variables will be stored in the profile. So, you can use the profile variable, to hide the content across the sessions.
adobe.target.trackEvent({ "mbox": "clicked-cta", "params": { "profile.param1": "true" } });
Create an Audience to show content when "profile.param1" value is not set.
Hi @a_hulshof
Maybe you can fire an extra mbox on click of element. Pass parameter in that mbox as xyz=clicked.
Then create audience as mbox parameters xyz is equal to clicked.
Hope this works.
Thanks,
Gauresh
Hi @a_hulshof ,
Trigger below code on click of UI element. Profile variables will be stored in the profile. So, you can use the profile variable, to hide the content across the sessions.
adobe.target.trackEvent({ "mbox": "clicked-cta", "params": { "profile.param1": "true" } });
Create an Audience to show content when "profile.param1" value is not set.
Views
Likes
Replies