How do I schedule a landing page? | Community
Skip to main content
October 15, 2014
Question

How do I schedule a landing page?

  • October 15, 2014
  • 2 replies
  • 1149 views
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). 

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

2 replies

October 15, 2014
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
Adobe Employee
Adobe Employee
October 15, 2014
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.