URL Mapping during Append

  • 2 July 2014
  • 1 reply
  • 2 views

Is it possible to alter the field names on the Append to URL on Form Confirmation.

For example, our store page for orders requires that the first name field is billing_address[first_name]= as opposed to the Unbounce formatting as FName=

I see that we can map fields in a Post, but not in a forward.


1 reply

Userlevel 3
Badge +1

Hi Jerell - you can accomplish this some Javascript:

<script> <br />
 $('#unbounceID').attr('name', 'DesiredFieldID'); <br /> </script>   

Just replace unbounceID with your Unbounce field ID and DesiredFieldID to whatever you’d like to appear.

One thing that will happen is that the square brackets will get encoded as HTML though, so [becomes %5b and] becomes %5d–there isn’t a way to get around that.

Reply