Reputation: 505
I'm new to kentico and I'm trying to integrate marketo Forms 2.0 (contact us page) to a kentico page, Was unable to find any integration samples,
Upvotes: 1
Views: 1890
Reputation: 505
I was able to fix all the form tag issues using following code
MktoForms2.loadForm("//app-***.marketo.com", "****", 8888, function (form) {
MktoForms2.$("#formPlaceholder_8888").append(form.getFormElem());
form.addHiddenFields({ "Industry": document.title });
form.onSuccess(function (values, followUpUrl) {
return false;
});
});
<div id="formPlaceholder_8888">&</div>
Replace the *** and 888 with correct values of the script.
Upvotes: 0
Reputation: 1214
There are three options to integrate a Marketo Form on a Kentico page. The first option is to place the form embed code generated by Marketo directly in the HTML of the Kentico page. The second option is to integrate a Marketo Form as an iFrame on the Kentico page. The third option would be to use your own form on the Kentico page, and then send this data to Marketo using a server-side form post.
Upvotes: 1