How do I schedule a landing page?

Anonymous
Not applicable

How do I schedule a landing page?

I have a landing page under a default program that I want to launch at exactly 5:50am tomorrow morning... how can I schedule a landing page?

As in, I don't want the URL of the landing page to work until 5:50am on Wednesday, Oct 15. (it has to do with an embargo my PR team places on our reports when they pitch it to press) 
 
If it's of any help, you can see how I've set up my landing page (it's called "LP01-Register" under the program "1410 Market Index Q3 2014). 

0EM50000000SW0g.jpg
Tags (1)
2 REPLIES 2
Anonymous
Not applicable

Re: How do I schedule a landing page?

You can't schedule a landing page, but if you schedule the email that has the link in it to go at 5:50 then at that moment in time people will be able to access it.  
Kenny_Elkington
Marketo Employee

Re: How do I schedule a landing page?

Hi Elicia,

I'm not certain why you'd want to shutter the page itself until a certain date, but it's possible with Javascript.  You can add something like this to the <head> of your page to redirect if certain time hasn't been reached:

<script>
(function(){
var now = new Date().getTime();
var open = Date.parse('2014-10-16');//change your date here
if (now < open) {
window.location.href = '//www.example.com';//replace example.com with your desired redirect
}
})();
</script>

I'd generally go with Cheryl's suggest though.