We have a site that uses Marketo embedded Marketo forms. We want to implement a bit more sophisticated conversion tracking other than a button click for form submission. The thought is we would work with the Forms 2.0 API and utilize the onSuccess callback. After a successful callback we would push the conversion to Google Analytics.
I'm not a coder by trade but my understanding is that I would use a variation of this code.
MktoForms2.loadForm("//app-ab00.marketo.com", "785-UHP-775", 1057, function(form) {
// Add an onSuccess handler
form.onSuccess(function(values, followUpUrl) {
// Get the form's jQuery element and hide it
form.getFormElem().hide();
// Return false to prevent the submission handler from taking the lead to the follow up url
return false;
});
});
According to this article it is suggested that something along the lines of the following code be inserted
ga('send', 'event', {
eventCategory: 'event_registration',
eventAction: 'form-submit',
eventLabel: 'page title' // I'm planning on replacing this with a dynamic value that grabs the page title if possible
});
in place of
form.getFormElem().hide();
The final comment in that article suggests the code is incomplete and the user should use the GA hitCallback feature.
This article seems to give some hints on how to do this since they use the hitCallback function with the onSuccess handler but I am not sure I completely understand how it functions. This is also utilizing the data layer instead of the just pushing the event into Google Analytics as the first bit of code does.
The code:
form.onSuccess(function(values, followUpUrl){
dataLayer.push({
'event': 'marketo.success',
'marketo.form_id': form_id,
'marketo.form_values': values,
'eventCallback': function() {
dataLayer.push({
'marketo.follow_up_url': followUpUrl
})
}
});
I'm fine with using the data layer since I'd want to use this data in other analytics platforms. My question is how do I implement this? Should it look something like this?
MktoForms2.loadForm("//app-ab00.marketo.com", "785-UHP-775", 1057, function(form) {
// Add an onSuccess handler
form.onSuccess(function(values, followUpUrl) {
form.onSuccess(function(values, followUpUrl){
dataLayer.push({
'event': 'marketo.success',
'marketo.form_id': form_id,
'marketo.form_values': values,
'eventCallback': function() {
dataLayer.push({
'marketo.follow_up_url': followUpUrl
})
}
});
return false;
});
});
Any thoughts on how to fully implement this from the code to what needs to be set up in Google Tag Manager?
I wouldn't say that last code snippet makes sense. 🙂 It also has a syntax error.
If you want to push to the dataLayer and then redirect when complete, that's like so:
MktoForms2.loadForm("//app-ab00.marketo.com", "785-UHP-775", 1057);
MktoForms2.whenReady(function(mktoForm) {
mktoForm.onSuccess(function(values, followUpUrl) {
dataLayer.push({
"event": "marketo.success",
"marketo.form_id": form_id,
"marketo.form_values": values,
"marketo.follow_up_url": followUpUrl,
"eventCallback": function () {
document.location.href = followUpUrl;
}
});
return false;
})
});
Note I prefer to use the separate whenReady rather than the 4th argument to loadForm, as it doesn't require your instance-specific information to be inside the (often copied-and-pasted) code.
When it comes to implementing tracking in Google Tag Manager (GTM) what is the process?
When it comes to implementing tracking in Google Tag Manager (GTM) what is the process?
Well... what are your goals? GTM + Data Layer seems like something you're already using.
Sorry for the delay. The goal would be to track successful form submissions in Google Analytics
Thanks for the rework on that code. I'm not a coder by trade so it's no surprise that I made those errors as I tried to mash up various pieces of code.
If we were going to not send somebody to a landing page and just refresh the form on submission I imagine I can drop these lines of code?
"marketo.follow_up_url": followUpUrl,
"eventCallback": function () {
document.location.href = followUpUrl;
}
No, you absolutely still need that part.
Even if the Thank You page is the same page the form is on, you still need to wait for the Event to be logged before refreshing.
The only time you do not need to have an eventCallback is if you are literally staying on the page, not even refreshing it in-place.
Thanks. I believe our forms are set up with the "stay on page' option. There is no page refresh. Just a form reset/refresh. Sounds like this still requires the eventCallback. I'm not sure why you would ever stay on a page and not refresh the form.
Stay on Page refreshes the entire page, as you can see in the Network log.
You would not refresh the page if you were just going to hide the form after submission.
There really isn't any such thing as "refreshing a form," perhaps you mean "resetting" which is a standard method.
Ah. Yes. I see that. I might have been looking at a form embedded in an iframe where the page doesn't refresh but the iframe does. I guess that would still require the eventCallback right?
Yes, that's right.
Sorry for the late reply. Now, if we use the same form on multiple pages I imagine there is probably a way to push some additional data to the dataLayer that would indicate which page the form was on. Correct? is there a best practice to do something like this?
Not a single "best" practice, but certainly you can push the current URL (document.location.href) to the dataLayer.
Would this be better than say using {{Page URL}} as the label in the GTM/GA tag for the event?
A built-in token is fine, too, I just like to have direct control.
Ok. So if I go the route of adding through a push I need one more line of code such as:
"marketo.form_url": document.location.href
Yep!
Excellent! Thanks.
Pardon this non-programmer question but is there any significance to the naming convention? For example could:
marketo.form_id
be simply
form_id
It's just a convention to create a namespace-like/hierarchy-like/object-like feel. You don't have to use it.
In other words, it simulates a complex object like:
{
"marketo" : {
"form_id" : 123
}
}
But it isn't really like that under the hood, it's just flat.