So, I found this similar request, but the poster answered himself with going into details:
Persistent URL query string throughout the entire site?
Essentially, I have an event management website where I can edit html and javascript, but not php. I am trying to setup passing a discount code through a link to use for affiliate tracking. The system already allows for the code to be passed in a query in the form of:
https://www.example.com/reg/newreg.php?eventid=89335&discountcode=code
BUT
The caveat is that the system only allows that when linking the person directly into the registration process as shown above. Since no one is going to want to buy a ticket without seeing the event details, this is all but useless. The address of the homepage is in the form of:
https://www.example.com/home/89335
But when I try appending &discountcode=code to the address, the query string is lost upon clicking the registration link and going to the registration page.
Any suggestions on how to handle this?
Thanks!