SOLVED

Re: What to do with post-event landing pages

Go to solution
Matt_Stone2
Level 9

What to do with post-event landing pages

I was curious what people do with event landing pages after the event is over. In particular, for webinar landing pages.

I've never really paid much attention to them and just left them alone, but I do see the rare lead come through the registration form well after the event is over--and effectively nothing will happen for them.

I've boiled it down to two options: either I change the form afterwards to one that acts as on-demand (which already exists, just on the main website and not as a landing page), or I just throw a button or something on the page to point to the on-demand location. The latter is easier, but adds another click to the process.

Just curious what other people are doing in this situation.
1 ACCEPTED SOLUTION

Accepted Solutions
Matt_Stone2
Level 9

Re: What to do with post-event landing pages

What I decided to do was utilize some javascript and a token on the webinar program to automatically push the user to the on-demand page. If anyone is curious, here's what I did:

Place the following javascript on your registration landing page near the top:

    <script>
    
        var onDemand = "{{my.Asset URL}}"; // pulls the on-demand webinar URL
        
        if (onDemand != "") { // if the URL is set, redirect user to on-demand page
            window.location = onDemand;
        }
        
    </script>


This will look for a token in your program called "Asset URL" -- which you will only set after the event. Until you set it, it'll output as nothing.

Once the event is over, and you've set up your on-demand page elsewhere, you take that URL and then create your token with it. Now that the token is populated (use the full http://www.yourwebsite.com URL), when the script runs, it'll see there's a value and redirect the page.

Now instead of having to do any kind of manual code swap or activating/deactivating programs, you just add this token at the appropriate time.

Of course, this won't work for people with javascript disabled, but in my case it's a limited amount of people who hit these landing pages after the fact, so I'm willing to accept that.

View solution in original post

6 REPLIES 6
Josh_Hill13
Level 10 - Champion Alumni

Re: What to do with post-event landing pages

Go with the first option to convert the text to On Demand and change the Program to have an On Demand flow. Most of my Webinar Program Templates have this option and it's easy to switch over after the event.

I know a lot of firms also build a central resource page that either links back to the original reg page or has the recordins on page.
Anonymous
Not applicable

Re: What to do with post-event landing pages

We take the form down, and put a little text where the from was, to the effect of "The event is over, sorry". The process is manual, and sometimes we forget. Our next step would be to instead link to / show other events we have. 
Matt_Stone2
Level 9

Re: What to do with post-event landing pages

What I decided to do was utilize some javascript and a token on the webinar program to automatically push the user to the on-demand page. If anyone is curious, here's what I did:

Place the following javascript on your registration landing page near the top:

    <script>
    
        var onDemand = "{{my.Asset URL}}"; // pulls the on-demand webinar URL
        
        if (onDemand != "") { // if the URL is set, redirect user to on-demand page
            window.location = onDemand;
        }
        
    </script>


This will look for a token in your program called "Asset URL" -- which you will only set after the event. Until you set it, it'll output as nothing.

Once the event is over, and you've set up your on-demand page elsewhere, you take that URL and then create your token with it. Now that the token is populated (use the full http://www.yourwebsite.com URL), when the script runs, it'll see there's a value and redirect the page.

Now instead of having to do any kind of manual code swap or activating/deactivating programs, you just add this token at the appropriate time.

Of course, this won't work for people with javascript disabled, but in my case it's a limited amount of people who hit these landing pages after the fact, so I'm willing to accept that.
Malik_Zafar2
Level 4

Re: What to do with post-event landing pages

any new suggestions since 2014 (seeing as this is an old thread)?

does redirecting make the most sense?

Matt_Stone2
Level 9

Re: What to do with post-event landing pages

I now use a process in which my live registration page is the same as my on-demand page. I just tweak the copy afterward and update the form so that instead of registering for the webinar, you receive the on-demand version. This makes it nice and clean and I don't have to maintain multiple pages for the same event.

Gautam_Chargotr
Level 2

Re: What to do with post-event landing pages

@Matt_Stone2 , request you to please elaborate and share a script if there is any, thanks