Pablo
I have setup a button on the PayPal account for a ticket that can be sold as £15.00 or concession £12.00 so I have left it so the user can select the type based on PayPal's own instruction, on WWB I have added a buy now button but how do I link it so the user can select a ticket type before purchasing. I have tried a combobox but that is ideal for size which does not apply here.
PayPal Multiple Price
PayPal Multiple Price
Running WYSIWYG Web Builder since 2007...
- donjohnson24
-
- Posts: 127
- Joined: Thu Sep 27, 2012 9:32 pm
- Location: Bridgwater, Somerset, UK
- Contact:
Re: PayPal Multiple Price
I'm not absolutely sure whether I have fully understood what you are trying to do, but if it is like the alternative prices shown on this page:
http://www.johnsmithbusker.co.uk/ordering.html
then the following is the HTML for one of the items:
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="XXXXXXXXXXXXX"> (XXXXXXX would be your own code)
<table>
<tr>
<td>
<p align="center"><input type="hidden" name="on0" value="Destination">Destination</p>
</td>
<td><select name="os0">
<option value="UK">UK £59.00</option>
<option value="Europe">Europe £61.00</option>
<option value="Rest of World">Rest of World £64.00</option>
</select> </td>
</tr>
</table>
<input type="hidden" name="currency_code" value="GBP">
<input type="image" src="https://www.paypal.com/en_GB/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online.">
<img alt="" border="0" src="https://www.paypal.com/en_GB/i/scr/pixel.gif" width="1" height="1">
</form>
It is some time since I created this, so it may be crude - but it does seem to be effective.
Hopefully it may be of some help - if not, just ignore it!
http://www.johnsmithbusker.co.uk/ordering.html
then the following is the HTML for one of the items:
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="XXXXXXXXXXXXX"> (XXXXXXX would be your own code)
<table>
<tr>
<td>
<p align="center"><input type="hidden" name="on0" value="Destination">Destination</p>
</td>
<td><select name="os0">
<option value="UK">UK £59.00</option>
<option value="Europe">Europe £61.00</option>
<option value="Rest of World">Rest of World £64.00</option>
</select> </td>
</tr>
</table>
<input type="hidden" name="currency_code" value="GBP">
<input type="image" src="https://www.paypal.com/en_GB/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online.">
<img alt="" border="0" src="https://www.paypal.com/en_GB/i/scr/pixel.gif" width="1" height="1">
</form>
It is some time since I created this, so it may be crude - but it does seem to be effective.
Hopefully it may be of some help - if not, just ignore it!

Re: PayPal Multiple Price
Don;
Not quite what I had in mind, but I thank you for the suggestion, it is not actually bad.
Z
Not quite what I had in mind, but I thank you for the suggestion, it is not actually bad.
Z
Running WYSIWYG Web Builder since 2007...
- BaconFries
-
- Posts: 5877
- Joined: Thu Aug 16, 2007 7:32 pm
Re: PayPal Multiple Price
Here you are Sam, Bendigo, Zinc, lol....take a look at this I think this is what you after
Code: Select all
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<!-- Identify your business so that you can collect the payments. -->
<input type="hidden" name="business" value="zinc@madebyzinc.com">
<!-- Specify a Buy Now button. -->
<input type="hidden" name="cmd" value="_xclick">
<!-- Specify details about the item that buyers will purchase. -->
<input type="hidden" name="item_name" value="Ticket Type">
<input type="hidden" name="currency_code" value="GBP">
<!-- Provide a dropdown menu option field. -->
<input type="hidden" name="on0" value="Ticket">Type of Ticket<br />
<select name="os0">
<option value="Select a type">-- Select a Ticket --</option>
<option value="No Consession">No Consession</option>
<option value="Consession">Consession</option>
</select> <br />
<!-- Provide a dropdown menu option field with prices. -->
<input type="hidden" name="on1" value="Price">Price <br />
<select name="os1">
<option value="No Discount">No Consession £15.00 GBP</option>
<option value="Discount">Consession £12.00 GBP</option>
</select> <br />
<!-- Specify the price that PayPal uses for each option. -->
<input type="hidden" name="option_index" value="1">
<input type="hidden" name="option_select0" value="No Discount">
<input type="hidden" name="option_amount0" value="15.00">
<input type="hidden" name="option_select1" value="Discount">
<input type="hidden" name="option_amount1" value="12.00">
<br />
<!-- Display the payment button. -->
<input type="image" name="submit" border="0"
src="https://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif"
alt="PayPal - The safer, easier way to pay online">
<img alt="" border="0" width="1" height="1"
src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" >
</form>
Re: PayPal Multiple Price
What I have done in a similar situation is to just offer two tickets for sale; one priced at 12 and the other priced at 15. I couldn't find a way for the buyer to select the price after they entered PayPal.zinc wrote:Pablo
I have setup a button on the PayPal account for a ticket that can be sold as £15.00 or concession £12.00 so I have left it so the user can select the type based on PayPal's own instruction, on WWB I have added a buy now button but how do I link it so the user can select a ticket type before purchasing. I have tried a combobox but that is ideal for size which does not apply here.
Hope this helps.
Re: PayPal Multiple Price
Can this be done though WWB visually or do I have to embed this code?BaconFries wrote:Here you are Sam, Bendigo, Zinc, lol....take a look at this I think this is what you after
Code: Select all
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"> <!-- Identify your business so that you can collect the payments. --> <input type="hidden" name="business" value="zinc@madebyzinc.com"> <!-- Specify a Buy Now button. --> <input type="hidden" name="cmd" value="_xclick"> <!-- Specify details about the item that buyers will purchase. --> <input type="hidden" name="item_name" value="Ticket Type"> <input type="hidden" name="currency_code" value="GBP"> <!-- Provide a dropdown menu option field. --> <input type="hidden" name="on0" value="Ticket">Type of Ticket<br /> <select name="os0"> <option value="Select a type">-- Select a Ticket --</option> <option value="No Consession">No Consession</option> <option value="Consession">Consession</option> </select> <br /> <!-- Provide a dropdown menu option field with prices. --> <input type="hidden" name="on1" value="Price">Price <br /> <select name="os1"> <option value="No Discount">No Consession £15.00 GBP</option> <option value="Discount">Consession £12.00 GBP</option> </select> <br /> <!-- Specify the price that PayPal uses for each option. --> <input type="hidden" name="option_index" value="1"> <input type="hidden" name="option_select0" value="No Discount"> <input type="hidden" name="option_amount0" value="15.00"> <input type="hidden" name="option_select1" value="Discount"> <input type="hidden" name="option_amount1" value="12.00"> <br /> <!-- Display the payment button. --> <input type="image" name="submit" border="0" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif" alt="PayPal - The safer, easier way to pay online"> <img alt="" border="0" width="1" height="1" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" > </form>
Running WYSIWYG Web Builder since 2007...
Re: PayPal Multiple Price
You can do this visually by creating a standard form. The PayPal buttons only provide 'fixed' functionality.
Re: PayPal Multiple Price
Thanks guys I see the light now! 

Running WYSIWYG Web Builder since 2007...