Hello,
I'm working with the following query string:
action=add&receiverEmail=myemail@email.com.br¤cy=BRL&itemId=0011&itemDescription={Product Name (Name):1.1}&itemQuantity=1&itemAmount={Total:4}&itemWeight=8000
but the generated URL is:
http://website.com/?action=add&receiverEmail=myemail@email.com.br¤cy=BRL&itemId=0011&itemDescription=Product%20Name&itemQuantity=1&itemAmount&itemWeight=8000
Returns an empty value to the total. I need to return the value in the following structure: '25.00', my final URL would be something like:
http://website.com/?action=add&receiverEmail=myemail@email.com.br¤cy=BRL&itemId=0011&itemDescription=Product%20Name&itemQuantity=1&itemAmount=25.00&itemWeight=8000
How can I do this?
Gravity Forms version: 1.6.7
WP version: 3.3.1
Thanks!