Looking for help...
I have created a registration form for my local running club for runners to sign up for a special event. The event has several price points: $10 for Friday events only, $20 for Friday and Saturday, etc. In the form, I have created an entry (radio button) for people to choose between the different price points. However, I am having trouble figuring out how, when I redirect people to paypal to pay for their registrations, I can send the correct price to paypal based on the radio button they chose in the form (Friday only, Friday and Saturday, etc).
I am a ChronoForms newbie, but I have made quite a bit of progress so far just by searching the thread for info. Here's what I have done so far:
1. I have created the form (including the radio button w/ pricing options)
2. I set up email notifications for when new entries are submitted
3. I set up a database for entries
4. I used ChronoConnectivity to report out certain database items to a "Who Has Registered" site
5. I have set up the form to redirect to paypal (after creating email/database), BUT ONLY TO REDIRECT AT A SINGULAR PRICE POINT, AND NOT BASED ON WHAT THEY CHOSE TO PURCHASE IN THE FORM. Here is the code I used:
OnSubmit-before code: None
OnSubmit-after code:
Press the "Buy Now" button below to complete the transaction: <br />
<br />
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="post@domain.com">
<input type="hidden" name="item_name" value="Runner Registration">
<input type="hidden" name="amount" value="69.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="return" value="http://www.domain.com">
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but23.gif" name="submit" alt="Make payments with payPal - it's fast, free and secure!">
<img alt=""
src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
Does anyone know how to modify this code to make it redirect at different price points based on an entry in the database?
Thanks in advance!!
schult70
I have created a registration form for my local running club for runners to sign up for a special event. The event has several price points: $10 for Friday events only, $20 for Friday and Saturday, etc. In the form, I have created an entry (radio button) for people to choose between the different price points. However, I am having trouble figuring out how, when I redirect people to paypal to pay for their registrations, I can send the correct price to paypal based on the radio button they chose in the form (Friday only, Friday and Saturday, etc).
I am a ChronoForms newbie, but I have made quite a bit of progress so far just by searching the thread for info. Here's what I have done so far:
1. I have created the form (including the radio button w/ pricing options)
2. I set up email notifications for when new entries are submitted
3. I set up a database for entries
4. I used ChronoConnectivity to report out certain database items to a "Who Has Registered" site
5. I have set up the form to redirect to paypal (after creating email/database), BUT ONLY TO REDIRECT AT A SINGULAR PRICE POINT, AND NOT BASED ON WHAT THEY CHOSE TO PURCHASE IN THE FORM. Here is the code I used:
OnSubmit-before code: None
OnSubmit-after code:
Press the "Buy Now" button below to complete the transaction: <br />
<br />
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="post@domain.com">
<input type="hidden" name="item_name" value="Runner Registration">
<input type="hidden" name="amount" value="69.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="return" value="http://www.domain.com">
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but23.gif" name="submit" alt="Make payments with payPal - it's fast, free and secure!">
<img alt=""
src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
Does anyone know how to modify this code to make it redirect at different price points based on an entry in the database?
Thanks in advance!!
schult70