• Hello,

    At the bottom of this page I have a series of different downloads (using one contact form). However all of the downloads lead to the same document – the first one in the list.

    Is there any way to fix this?

    Thanks a lot for your help.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The problem is that all of your Download buttons on your page have #contact_form_pop as their href target and you have every form named with id=”contact_form_pop”. Thus, when one clicks the Download button, the javascript simply finds the first form with that name and uses that. That’s why every form submission sends a download_id of 6 (because it’s always using the first form and your first form is download_id of 6).

    You need to fix all the duplicate id=”contact_form_pop” tags to be something like id=”contact_form_pop_1″ and id=”contact_form_pop_2″ and so on and then fix all your Download button links to correspond to the appropriate new id for each form.

    Thread Starter jenny852

    (@jenny852)

    Ah, thank you very much! All working now 🙂

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Multiple downloads on one page’ is closed to new replies.