Hi All,
I have a couple of questions,
Thanks in advance.
Clicked Link and Visited Web Page activities are logged by default in all sessions, either anonymous or associated with a known lead.
It's likely that the way you're linking to your PDFs (for example, using a JS redirect) is not being picked up automatically by Munchkin and the Clicked Link will need to be manually fired.
You should supply a live URL to accompany such questions as that is the only way we can troubleshoot your site-specific issues.
Hi Sanford,
The below is the live URL where the Munchkin code is added,
http://labs.verticurl.com/AnonymousTrackingTest
In the LP, have 2 PDF links, One PDF hosted in Marketo and other in Eloqua.
For both the new and existing persons, the Marketo PDF Click link is tracking.
Can I able to track external PDF Link too?
Thanks!
Both of those links are already being tracked, it's easy to see in Dev Tools:
Yes, I could see in dev tool.
But it's not tracking in Activity Log?
You don't see both of those hits in the Activity Log for the lead? That's is, frankly, bizarre. Can you post a screenshot of the ActLog?
I have the same problem.
This is a link to a PDF from a landingpage: http://pages.searchmetrics.com/rs/656-KWJ-035/images/Searchmetrics%20Universal%20Search%20Industries...
Thisis the screenshot from my own activity log.
The last activity is the mail that links to the landingpage with the pdf. Nothing is tracked afterwards 😞
So are you saying that you clicked the link in the email, were taken to a Munchkin-enabled landing page and then clicked a PDF link on that landing page? If so, we've experienced this ourselves in the past - where the "visits LP" and "clicked link" activity were missing from the activity log; or there was a significant delay (upwards of 90 minutes) before the activity was finally seen in the activity log.
What is the URL of the LP when viewed in your browser?
If your links aren't properly tracked, they won't have the all-important mkt_tok query param added. Without that param, neither the page visit nor the link click will be associated with the lead.
How are you building the link in the email?
Hi Dan and Sanford,
here is the flow:
Email with link to a landingpage goes out. The landingpage contains 5 whitepapers (PDF).
Activity Log shows "Email Delivered" as the last activity. So even the opening is not tracked properly 😞
Landingpage URL in the email is a token >> {{my.Whitepaper Link}}
The token is defined as http://pages.searchmetrics.com/EN-MKT-201806-Universal-Search-Industries_Universal_Search_Industries... which is also the final URL in the browser.
We changed nothing in Marketo. Tracking checkbox is activated.
The Marketo standard pixel is injected via Google Tag Manager on "DOM ready"
<script type="text/javascript">
(function() {
var didInit = false;
function initMunchkin() {
if(didInit === false) {
didInit = true;
Munchkin.init('656-KWJ-035');
}
}
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = '//munchkin.marketo.net/munchkin.js';
s.onreadystatechange = function() {
if (this.readyState == 'complete' || this.readyState == 'loaded') {
initMunchkin();
}
};
s.onload = initMunchkin;
document.getElementsByTagName('head')[0].appendChild(s);
})();
</script>
And I don't even use anonymous browsing.
So I have really no idea, what's going on.
Thanks for your help.