On paypal's payment page? Well, when you generate the button it has an option to set if the quantity can be changed... and it's possible the default paypal code in the template is different from what they currently use, though doubtful. I'll check what it generates in a moment...
The only difference from what's currently in the template seems to be <input type="hidden" name="bn" value="PP-BuyNowBF"> <input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but23.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
But I dobut that would be an important difference.
Comments on Paypal question
Beginner
Usergroup: Customer
Joined: Dec 29, 2005
Total Topics: 1
Total Comments: 3
When I test the paypal function, after setting the desired number of days
(in quantity), the amount doesn't change. It stays zero...
Is this normal?
raeyo
developer
Usergroup: Administrator
Joined: Dec 20, 2001
Location: Diamond Springs, California
Total Topics: 61
Total Comments: 7868
On paypal's payment page? Well, when you generate the button it has an option to set if the quantity can be changed... and it's possible the default paypal code in the template is different from what they currently use, though doubtful. I'll check what it generates in a moment...
Okay, paypal comes up with this:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="support@webmastersite.net">
<input type="hidden" name="undefined_quantity" value="1">
<input type="hidden" name="item_name" value="sponsor purchase">
<input type="hidden" name="item_number" value="1">
<input type="hidden" name="amount" value="25.00">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="bn" value="PP-BuyNowBF">
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but23.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
</form>
The only difference from what's currently in the template seems to be
<input type="hidden" name="bn" value="PP-BuyNowBF">
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but23.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
But I dobut that would be an important difference.
Beginner
Usergroup: Customer
Joined: Dec 29, 2005
Total Topics: 1
Total Comments: 3
I found it ... stupid me.
I had to set 0.50 instead of 0,50
raeyo