Can i track which URL the form was completed and sent from?

mikel
mikel Member Posts: 2 NEW MEMBER

I have the same form on multiple pages and need to know which page the form was sent from. Can i achieve this in PipeDrive

Answers

  • Alex - LeadOn
    Alex - LeadOn Member Posts: 21 VERIFIED MEMBER
    10 Comments Name Dropper 5 Likes First Answer

    Just add a hidden field in the form that captures window.location.href and map it to a custom field in Pipedrive. That way, you’ll know which page the form was submitted from.

    • If you're using HTML, add this:
      <input type="hidden" name="source_url" id="source_url">


    <script>
    document.getElementById("source_url").value = window.location.href;
    </script>

    • If you're using a form builder in Pipedrive, check if it supports hidden fields and set a default value on each page to indicate the source.