Greetings,
I am trying to add a paypal cart/buy now button to my wordpress page. Even though I try to copy the paypal code in the 'text' area of wordpress once I save it it changes the code from the full code to a simplified code. The first is the actual code, the second is what the code is changed to after saving. This is what it gives Me in visual: Tickets, Passes & Packages
Day Pass $40.00 CAD
Weekend Pass $100.00 CAD
VIP Pass $150.00 CAD
VIP Pass ADD-ON: Saturday Sushi Dinner $20.00 CAD
VIP Package (2 VIP Passes + Hotel 3 Nights) $700.00 CAD
VIP Package ADD-ON: Saturday Sushi Dinner $40.00 CAD
FIRST CODE (Paypal code):
<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="GGB2RBURC3WC4">
<table>
<tr><td><input type="hidden" name="on0" value="Tickets, Passes & Packages">Tickets, Passes & Packages</td></tr><tr><td><select name="os0">
<option value="Day Pass">Day Pass $40.00 CAD</option>
<option value="Weekend Pass">Weekend Pass $100.00 CAD</option>
<option value="VIP Pass">VIP Pass $150.00 CAD</option>
<option value="VIP Pass ADD-ON: Saturday Sushi Dinner">VIP Pass ADD-ON: Saturday Sushi Dinner $20.00 CAD</option>
<option value="VIP Package (2 VIP Passes + Hotel 3 Nights)">VIP Package (2 VIP Passes + Hotel 3 Nights) $700.00 CAD</option>
<option value="VIP Package ADD-ON: Saturday Sushi Dinner">VIP Package ADD-ON: Saturday Sushi Dinner $40.00 CAD</option>
</select> </td></tr>
</table>
<input type="hidden" name="currency_code" value="CAD">
<input type="image" src="https://www.paypalobjects.com/en_US/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.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
SECOND CODE (in wordpress text area after updating):
<table>
<tbody>
<tr>
<td>Tickets, Passes & Packages</td>
</tr>
<tr>
<td>Day Pass $40.00 CAD
Weekend Pass $100.00 CAD
VIP Pass $150.00 CAD
VIP Pass ADD-ON: Saturday Sushi Dinner $20.00 CAD
VIP Package (2 VIP Passes + Hotel 3 Nights) $700.00 CAD
VIP Package ADD-ON: Saturday Sushi Dinner $40.00 CAD</td>
</tr>
</tbody>
</table>
<img src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" alt="" width="1" height="1" border="0" />
Link to the webpage: http://qcitykinkfestival.com/tickets/
Thanks!