Dynamic form sign ups within CMS

Hi guys

I want to introduce a file download at the bottom of certain blog posts where, in order to receive that download, someone needs to register their email address, any idea how I do this?

To be clear, only a few blog posts will have this, and depending on which blog post they sign up via, they will receive a different PDF download.

I am happy to do it whereby they request the download via a subscriber form and it then gets automatically emailed to them (by my mailchimp autoresponder).

Essentially it will be just like Backlinko does:
How To Boost Conversions by 785% in One Day (The Content Upgrade) (bottom of this blog post)

read only: https://preview.webflow.com/preview/dream-big-travel-far?preview=ae94492a4e1e5739839b451433453663

1 Like

@williamsbrad1994

hey Bradley. This may help.

1 Like

Hey Alex

Unfortunately not as I need dynamic submission forms within CMS, not just on the site in general.

I then also need those forms to vary depending on which form they submit through.

What you can do as a workaround is to create a reference collection with all the URLs for your download link

You can then use the code below in the footer section of the individual page template for your product/service

<script>
var Webflow = Webflow || [];
Webflow.push(function() { //Webflow's custom push function must be included to ensure submission occurs
  $('#emailForm').submit(function() {
    setTimeout(function() {
      location.href = 'https://dl.your-dynamic-download-link-here.com' ;
    }, 2000);
  });
});
</script>

You would then replace the https://dl.your-dynam..... with the appropriate CMS tag to ensure each form redirects to the respective download link set in the URLs collection,

2 Likes

This topic was automatically closed 125 days after the last reply. New replies are no longer allowed.