Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

chrisw78940856
chrisw78940856
Offline

Badges

Badges
11

Accepted Solutions

Accepted Solutions
1

Likes Received

Likes Received
1

Posts

Posts
22

Discussions

Discussions
0

Questions

Questions
22

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by chrisw78940856
Customize the badges you want to showcase on your profile
Same-session metric tracking - Adobe Target 16-01-2018
We've come across a use case where it's important for us to track when a visitor completes a transaction within their first session upon entry in to an activity.My question is: What's the best way to do this?I thought about incrementing a cookie value by 1 for each new session, and only tracking event if cookie value is 1, but I'm not sure if there's a more efficient way to do this.Otherwise, can I pull the SessionID from the existing mbox cookie and use that value?Appreciate any support here.

Views

815

Likes

0

Replies

0
Re: Profile Script return numerical value - Adobe Target 04-08-2017
Thanks very much, it appears to work fine now.Chris

Views

1.2K

Likes

0

Replies

0
Re: Profile Script return numerical value - Adobe Target 28-07-2017
Sure, script below:if (mbox.name == 'dashboard_header_banner') { var signUpDate = mbox.param('registration_date'); //"yyyy-mm-dd" var day = signUpDate.split("-")[2]; var month = signUpDate.split("-")[1]; var year = signUpDate.split("-")[0]; var dateText = year + month + day; var date = parseInt(dateText); return date}The 'E7' just means x10^7. It's shorthand; the date format I've used yields a number over 20 million, and it doesn't like having that many digits. It's still technically a number.I ...

Views

1.1K

Likes

0

Replies

0
Profile Script return numerical value - Adobe Target 28-07-2017
Hi,I've created a profile script which is taking an mbox parameter for 'Sign up date' (which is a text string: "yyyy-mm-dd"), and converting it into a number, whose digits are YYYYMMDD. The value returned in mboxTrace for my test account is ''2.0170713E7" (13th July 2017).My hope is to then create an audience with criteria like "user.param IS GREATER THAN 20170728", or any others as and when they are needed. I.e., this is saying 'only target visitors who signed up after 28th July 2017'.After tes...

Views

2.2K

Likes

0

Replies

4
"Clicked on mbox" details - Adobe Target 20-07-2017
Hi,I'm using the form based editor for an AB test, and am measuring click through rate on plain text containing a link vs. a banner.I just want to confirm exactly when the success metric option "Clicked on mbox" triggers? As the link in the plain text variation only covers a small portion of the text within the mbox, would the metric only track on click of the link, or anywhere within the mbox?That is, would the metric trigger if I click anywhere in the bold code in 1), or anywhere in the bold c...

Views

1.4K

Likes

0

Replies

1
Re: Campaigns Not displaying? - Adobe Target 21-06-2017
Nevermind, issue resolved.Leaving this up in case anyone encounters something similar: the activity in question didn't work because it had apostrophes in its name.

Views

1.0K

Likes

0

Replies

0
Campaigns Not displaying? - Adobe Target 20-06-2017
Hi,In the last day or so we've noticed that some of the content we're serving through Target is no longer showing.We have an XT activity set up and live. The preview link shows the content as expected, but despite my meeting the audience criteria, I'm not seeing the content in a live environment. We're also not seeing any clicks on the mbox since yesterday, despite seeing a lot of visitors enter the activity.Interestingly, the mbox being used is appearing in the debugger tool, and says it is sho...

Views

1.1K

Likes

0

Replies

1
Re: Profile Script Lifetime - Adobe Target 15-05-2017
Hi Løjmann,Thanks for replying. I have tried testing this and it doesn't appear to be working. The test only appears when I go to the login page in the same session.Also, I tried adding the following to the test to see if anything was being passed:var param = user.get('Has_Seen_Login_Page') alert(param);So far this has not worked, even in the same session and with other user parameters, such as IP: [img]https://content.screencast.com/users/Mezzo_Chris/folders/Jing/media/ae57b524-0224-4c94-b82b-a...

Views

1.6K

Likes

0

Replies

0
Profile Script Lifetime - Adobe Target 11-05-2017
I recently created a profile script which captures whether or not the login page has been seen by a visitor: if(page.url.indexOf("/login") > -1){ return "hasSeenLogin"} Checking with mboxTrace, I have seen the user parameter working within the same session as the login page view. However when I go back and check again a day or so later, I can no longer see the parameter. Is there a reason that it is not remaining for 14 days as per this: https://marketing.adobe.com/resources/help/en_US/target/ov...

Views

4.2K

Likes

0

Replies

5
Re: Data Layer - Custom conversion tracking - Adobe Target 11-05-2017
Thanks Daniel.Not yet using at.js, but will be in the future. For now, would this be possible using mboxDefine() and mboxUpdate?Chris

Views

1.2K

Likes

0

Replies

0
Likes from