활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
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
조회 수
답글
좋아요 수
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
조회 수
답글
좋아요 수
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
조회 수
답글
좋아요 수
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.
조회 수
답글
좋아요 수