내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

Target Recommendations Clicks Not Tracking

Avatar

Level 2

Currently have recommendations displaying on all product detail pages via a JSON offer and a form builder activity. The recommendations are showing exactly as expected however none of the interactions with any of the recommended products is being captured in analytics.

The implementation looks to be functionally sound with the exception of the click tracking. My hunch is that it has something to do with the load order of the first and second analytics call, something is loading out of order and not capturing the click event that is an out-of-the-box metric in Target.

At one point the clicks were tracking but after a recent "slight" redesign of the site all click tracking associated with the recommended products has fallen off completely. I've looked at at.js version, a4t version, and visitor api version and everything looks to be inline with the configuration guidelines.

Anyone have any ideas what could be causing this? Any help is appreciated.

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Community Advisor

I am not sure if I have already understood your problem correctly.

 

In what order is Adobe Target loaded and when is Adobe Analytics loaded? Is it loaded synchronously or asynchronously?

 

Is the problem only the timing, that after the click - too fast is switched to another page?
If yes or there is a suspicion - you can simply stop it by e.g. window.onbeforeunload = function(e) { return 'Dialog text here.'; }; that the page is left and check if the mbox call / trackEvent was sent. If this is your problem - the click event needs to be processed - that you first do the tracking and on the callback or promise accordingly continue the actual task of the click.

원본 게시물의 솔루션 보기

1 답변 개

Avatar

정확한 답변 작성자:
Community Advisor

I am not sure if I have already understood your problem correctly.

 

In what order is Adobe Target loaded and when is Adobe Analytics loaded? Is it loaded synchronously or asynchronously?

 

Is the problem only the timing, that after the click - too fast is switched to another page?
If yes or there is a suspicion - you can simply stop it by e.g. window.onbeforeunload = function(e) { return 'Dialog text here.'; }; that the page is left and check if the mbox call / trackEvent was sent. If this is your problem - the click event needs to be processed - that you first do the tracking and on the callback or promise accordingly continue the actual task of the click.