I have a paypal button that I've created using the hosted button option, which of course hides some of the button options.
I want to be able to change some of the variables, including item_name
,item_number
and amount
. I've added these variables like so:
<input type="hidden" name="item_name" value="unique item name">
<input type="hidden" name="item_number" value="10015">
<input type="hidden" name="amount" value="60.00">
This changes the item_name
, but not the item_number
or the amount
. most importantly is the amount, as this is variable across different items, which are being pulled in dynamically.
Any suggestions on what I'm doing wrong or how to fix?
Thanks