What is the proper way to embed the HTML of an external form such as payflowlink from paypal?
I've had a request to paste in the following into a donations page for a group. The trouble is that WP is (rightfully) curtailing this HTML to prevent me or anyone from doing something less than honest.
form action="https://payflowlink.paypal.com" method="POST"
input name="LOGIN" type="hidden" value="XXXXXXXXXX" /
input name="PARTNER" type="hidden" value="PayPal" /
input name="DESCRIPTION" type="hidden" value="Donation" /
input name="AMOUNT" type="hidden" value="5.00" /
input name="TYPE" type="hidden" value="S" /
input type="submit" value="Donate here" /
/form
Question:
That said, how could I display this one-button form in a wordpress page?
Other things I've come across
I've evaluated other play-nice-with-paypal plugins but they are overkill for the scope of this. They would be nice to learn more about but for now, I really just want to (safely) embed this form.
- PayPal PHP SDK Class Library
- Form Maker Plugin (links to video how to)
What looks promising: