Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Yes, the <a href="https://merchant.paypal.com/us/cgi-bin/?cmd=_render-content&amp;content_ID=merchant/wp_standard" rel="noreferrer">Website Payments Standard</a> is the way to go.</p> <p>Basically, you create a form that has a few hidden fields ready to go (such as amount and what not) and then submit it. You could even submit this with JavaScript, so it takes your customer right to PayPal to complete the transaction.</p> <p>As an example:</p> <pre><code>&lt;form action="https://www.paypal.com/cgi-bin/webscr" method="post"&gt; &lt;input type="hidden" name="cmd" value="_xclick" /&gt; &lt;input type="hidden" name="business" value="your_paypal_email_account" /&gt; &lt;input type="hidden" name="undefined_quantity" value="1" /&gt; &lt;input type="hidden" name="item_name" value="Order #1111111 for So-and-So" /&gt; &lt;input type="hidden" name="item_number" value="order_1111111" /&gt; &lt;input type="hidden" name="amount" value="5.00" /&gt; &lt;input type="hidden" name="shipping" value="0.00" /&gt; &lt;input type="hidden" name="no_shipping" value="1" /&gt; &lt;input type="hidden" name="cn" value="Comments" /&gt; &lt;input type="hidden" name="currency_code" value="USD" /&gt; &lt;input type="hidden" name="lc" value="US" /&gt; &lt;input type="hidden" name="bn" value="PP-BuyNowBF" /&gt; &lt;input type="hidden" name="return" value="http://www.example.com/some-page-to-return-to" /&gt; &lt;input type="image" src="https://www.paypal.com/en_US/i/btn/btn_buynow_SM.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!" /&gt; &lt;img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" /&gt; &lt;/form&gt; </code></pre> <p>You can find documentation on the additional parameters available here: <a href="https://www.x.com/sites/default/files/pp_websitepaymentsstandard_integrationguide.pdf" rel="noreferrer">https://www.x.com/sites/default/files/pp_websitepaymentsstandard_integrationguide.pdf</a></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload