Does the order of the rules in an audience affect how the Audience works? Tried combining Mobile Carrier AND Zip Code AND Connection Speed but it didn't work. We tried using Mobile Carrier only and it worked.
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @Amcille no there is no such order in the audience configuration. If you have set AND operator among all individual condition/rule then visitor must qualify for every condition in order to qualify for the audience.
If possible can you paste here the audience configuration definition?
Hi @Amcille no there is no such order in the audience configuration. If you have set AND operator among all individual condition/rule then visitor must qualify for every condition in order to qualify for the audience.
If possible can you paste here the audience configuration definition?
Hi @ambikaTewari_ATCI This is a sample configuration for returning mobile visitors of any /help pages in our site that uses a "globe" carrier
Visitor Profile: Returning Visitor AND [Site Pages: Previous Page URL contains help OR Site Pages: Landing Page URL contains help] AND [Mobile: is Mobile Phone OR Mobile: is Mobile Device] AND [Geo: Mobile Carrier matches globe or globecomm network services]
This isn't working. Hope you could help us look into what went wrong. Thank you.
Views
Replies
Total Likes
Hi, Can you please try this ?
Views
Replies
Total Likes
So "previous page" only means the page immediately prior to the one they are currently viewing (not ANY previous page). "Landing page" means the first page of their session. I'd guess that is the condition that could be your hang up. If you want to consider anyone who's visited any /help page in the past you'll likely need a profile script to handle this effectively. Page(s) flag profile scripts are quite common. Something like this flags a visitor when they've reached a "/help" page:
if (page.path.indexOf("/help") != -1) {
return "true";
}
You could add some sessionID checking logic if you want it to be specific to the current session only.
Views
Replies
Total Likes
Views
Like
Replies
Views
Likes
Replies
Views
Like
Replies
Views
Like
Replies