Landing page for gathering email addresses

timhief wrote on 12/8/2021, 7:47 PM

Has anyone in here pulled together a landing page that integrates with the Xara ecosystem? I don't mind integrating a jscript solution but want to avoid too much automation. The classic landing page would be the kind that uses the standard web address of my site, for the first visit the guest hits the landing page, all subsequent visits bypass it and loads the 'regular' front page. I know it will involve using a cookie too. If someone has done some work on this it would be nice to get some guidance on developing the page or providing the solution for a fee. I'm using Web Designer Premium v18.5, x64 from August 2021.

Comments

johnebaker wrote on 12/9/2021, 2:41 AM

@timhief

Hi

Are you looking to add the landing page needed or similar to, the EU GDPR requirements of consent for placing cookies and data collection?

There are many javascript methods available on the Internet to achieve this. Integrating one into Web Designer using a placeholder and adding the script to the header and body sections as required should be possible.

However the 'gathering email addresses' may not depending on how you are wanting to do this.

John EB
Forum Moderator

 

VPX 16, Movie Studio 2025, and earlier versions 2015 and 2016, Music Maker Premium 2024.

PC - running Windows 11 23H2 Professional on Intel i7-8700K 3.2 GHz, 16GB RAM, RTX 2060 6GB 192-bit GDDR6, 1 x 1Tb Sabrent NVME SSD (OS and programs), 2 x 4TB (Data) internal HDD + 1TB internal SSD (Work disc), + 6 ext backup HDDs.

Laptop - Lenovo Legion 5i Phantom - running Windows 11 23H2 on Intel Core i7-10750H, 16GB DDR4-SDRAM, 512GB SSD, 43.9 cm screen Full HD 1920 x 1080, Intel UHD 630 iGPU and NVIDIA GeForce RTX 2060 (6GB GDDR6)

Sony FDR-AX53e Video camera, DJI Osmo Action 3 and Sony HDR-AS30V Sports cams.

timhief wrote on 12/9/2021, 9:14 AM

Good question. Yes, I'd like to comply with the EU GDPR requirements of consent for placing cookies and data collection. I have a podcast and actually have a fair number of EU listeners. My only use would be to read the cookie (if available) to determine if they have seen the landing page already and present the 'regular' site to them. I am thinking that I will email them a confirmation and then harvest the email from my email account. I don't have a service yet, for any regular marketing. That will be in the future.

johnebaker wrote on 12/9/2021, 9:45 AM

@timhief

Hi

Can you clarify what the landing page content will be, what it and/or the viewer has to do on first visit, and its role in connection with 'harvesting' of email addresses?

John EB

 

VPX 16, Movie Studio 2025, and earlier versions 2015 and 2016, Music Maker Premium 2024.

PC - running Windows 11 23H2 Professional on Intel i7-8700K 3.2 GHz, 16GB RAM, RTX 2060 6GB 192-bit GDDR6, 1 x 1Tb Sabrent NVME SSD (OS and programs), 2 x 4TB (Data) internal HDD + 1TB internal SSD (Work disc), + 6 ext backup HDDs.

Laptop - Lenovo Legion 5i Phantom - running Windows 11 23H2 on Intel Core i7-10750H, 16GB DDR4-SDRAM, 512GB SSD, 43.9 cm screen Full HD 1920 x 1080, Intel UHD 630 iGPU and NVIDIA GeForce RTX 2060 (6GB GDDR6)

Sony FDR-AX53e Video camera, DJI Osmo Action 3 and Sony HDR-AS30V Sports cams.

timhief wrote on 12/9/2021, 9:55 AM

It will be something a kin to requesting the email from the first time visitor for a future newsletter and programming alerts, possibly offering a free download that would not otherwise be available also. It's a work in progress.

johnebaker wrote on 12/9/2021, 4:21 PM

@timhief

Hi

. . . .  requesting the email from the first time visitor . . . .

There are two ways to do this without the need for a landing page.

  1. The easiest way is to have a Sign up box as part of the home page where the visitor enters their email address in to a text and confirms with a Submit button - the problem then is how you get the email address - see below.
     
  2. Using popup similar to the GDPR consent popups, rather than a landing page, with a text box for the visitor to enter their email address, there would also have to be a submit button and a skip/do not show again button. The popup is do-able, Web Designer uses jQuery, as the 'engine' of the web site it generates, which has some functions for setting and reading cookies. However as in 1 getting the email address is a problem.

Getting the email address.

How this could be done depends on the services your hosting company provides.

If they support PHP/MySQL and you are familiar with PHP/MySQL, you could create a database and PHP scripting to insert the email address into the database - reading the information also has several options. There are many examples scripts for doing this on the Internet.

If they do not support PHP/MySQL then the Submit button would have use a mailto:email address link, which opens the visitors email program from which they send an email to you. This adds a step which could put off the viewer from signing up.

There are other ways of getting the email address, however they are 'inelegant', tend to require complicated programming, and can be difficult to manage.

. . . . I'd like to comply with the EU GDPR requirements of consent for placing cookies and data collection. . . .

The guidelines here are a good starting point, although intended for small to medium businesses, as you are collecting personal data, they would apply to - you see the FAQ second item.

You may need to take legal advise on the Privacy Policy statement required.

HTH

John EB

Last changed by johnebaker on 12/9/2021, 4:26 PM, changed a total of 1 times.

VPX 16, Movie Studio 2025, and earlier versions 2015 and 2016, Music Maker Premium 2024.

PC - running Windows 11 23H2 Professional on Intel i7-8700K 3.2 GHz, 16GB RAM, RTX 2060 6GB 192-bit GDDR6, 1 x 1Tb Sabrent NVME SSD (OS and programs), 2 x 4TB (Data) internal HDD + 1TB internal SSD (Work disc), + 6 ext backup HDDs.

Laptop - Lenovo Legion 5i Phantom - running Windows 11 23H2 on Intel Core i7-10750H, 16GB DDR4-SDRAM, 512GB SSD, 43.9 cm screen Full HD 1920 x 1080, Intel UHD 630 iGPU and NVIDIA GeForce RTX 2060 (6GB GDDR6)

Sony FDR-AX53e Video camera, DJI Osmo Action 3 and Sony HDR-AS30V Sports cams.

timhief wrote on 12/9/2021, 7:44 PM

I can manage a bit of php coding, I'll look into some of your ideas. Thanks.