LP cname upon form submission | Community
Skip to main content
July 26, 2017
Solved

LP cname upon form submission

  • July 26, 2017
  • 3 replies
  • 5112 views

We have utilized different landing page cnames across domains.  One challenge we have not solved is how to insure the cname remains consistent upon a form submission or clicked link.  If a user arrives at pages.domain2.com/landingpage and submits a form, we would like them to arrive at pages.domain2.com/thankyou.  Currently upon form submission or followed link, the unique landing page cname reverts back to the primary.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

3 replies

SanfordWhiteman
Level 10
July 26, 2017

MktoForms2.whenReady(function(form){

    form.onSuccess(function(vals,tyURL){

        var loc = document.createElement('a');

        loc.href = tyURL;

        loc.hostname = document.location.hostname;

        document.location.href = loc.href;

        return false;

    })

})

Adam_Dost2
Level 2
August 2, 2017

For someone who is not technical, where would this code be placed?

SanfordWhiteman
SanfordWhitemanAccepted solution
Level 10
July 27, 2017
Cayce_Armstrong
Level 4
August 29, 2019

Hi @Sanford Whiteman‌ - I came across this community post and your linked blog post because we are just starting to use Marketo Landing Pages and are running into this same issue with our Thank You pages. I know nothing about JS and know this is probably a dumb question, but where do you add the script you provided in order to get this code to execute?

Cayce Armstrong
SanfordWhiteman
Level 10
August 29, 2019

Just inside the closing </body> tag.

Adam_Dost2
Level 2
July 27, 2017

Thank you Sandy!