Track where payments are generated from??

temp20220213
Contributor
Contributor

Is there a way to track where payments are coming from in the transaction reports?  We're thinking about setting up another donation page, but would like to be able to track where each donation comes from.  We don't want to limit home much people can donate, so setting up pre-determined amount (items) isn't really an option.  Is there any other way to distinguish what pages/sites the donations are coming from?  Thanks,

LM

Login to Me Too
1 REPLY 1

Nexus_Software
Contributor
Contributor

Hello,

 

One way to track where a payment was made from is to use the hidden custom input, then populate the value dynamically with JavaScript. E.g.,

 

<form>
<input id="FromURL" type="hidden" name="custom">
</form>

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

 

 

Thank you.

Login to Me Too

Haven't Found your Answer?

It happens. Hit the "Login to Ask the community" button to create a question for the PayPal community.