HI,
I am trying to target a user who has visited a landing pagexyz.com/egg during a session will then see a targeted banner for the landing page page pagexyz.com/abc.
How should I approach this?
Solved! Go to Solution.
You should create a profile script to do this. You can evalauate the URL of the page a visitor is hitting and then store some profile in Target against that visitor. Here is a basic on that will work:
You could also layer on some session logic that only set it if it's a new session. This might prove helpful: Profile Script Attributes
You should create a profile script to do this. You can evalauate the URL of the page a visitor is hitting and then store some profile in Target against that visitor. Here is a basic on that will work:
You could also layer on some session logic that only set it if it's a new session. This might prove helpful: Profile Script Attributes
Views
Replies
Total Likes
Hmm I wonder if some that got messed up when the moved Experience League to the new layout. I believe the profile script sample I shared was something like this:
if (user.sessionId != user.getLocal('lastSessionId')) { user.setLocal('lastSessionId', user.sessionId); if (page.path.indexOf("/egg") != -1) { return "true"; } else { if (user.get("sessionEggPgFlag")) { return "false"; } } } else { if (page.path.indexOf("//news.ht") != -1) { return "true"; } }
This presumes the profile script is named: sessionEggPgFlag
Views
Replies
Total Likes
Views
Replies
Total Likes
HI ryan,
so Tried the audience with - but didnt work
Visitor Profile: user.visited_XYZ_page equals
XYZ Page
visited_XYZ_page profile -
if (page.url.indexOf("abc.com/XYZ/ ") >= 0) {
return 'XYZ Page';
}
I did mbox trace and do not see the profile there as well. Please help.
waiting to hear back on this
Views
Replies
Total Likes
Hi Prarthana,
Are there any errors on the profile script list screen for your new profile? I think your profile script looks fine. After viewing the XYZ page and then loading another page you do not see the XYP page show up in an mbox trace? You should find it in the trace object under this path:
trace > profile > afterExecutionProfileSnapshot > profileAttributes. It should be named user.WhatEverYouNamedIt.
Views
Replies
Total Likes
Views
Like
Replies
Views
Likes
Replies