Paypal Buttons

Accept and process credit card payments with Paypal links. Add in seconds!

CSS/JS files (add code to <HEAD> section):

NO JS/CSS files required.
          

PayPal Payment/Buy Link

Create payment buttons so your customers can pay!

View code:


<!-- DC PayPal Payment Link Start -->
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
 <input type="hidden" name="cmd" value="_xclick">
 <input type="hidden" name="business" value="YOUR@PAYPALACCOUNT.COM">
 <input type="hidden" name="item_name" value="Name of item paying for">
 <input type="hidden" name="amount" value="29.95">
 <input type="hidden" name="currency_code" value="USD">
 <input type="hidden" name="button_subtype" value="products">
 <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
</form>
<!-- DC PayPal Payment Link End -->


Parameters:
---------------------
business= enter your paypal email address
item_name= description of item to pay for
amount= price of item
currency_code= (USD/EUR/AUD/GBP/CAD) currency to use 
button_subtype= (products/services) define what are you selling
item_number= item number (optional)
invoice= invoice number (optional)
shipping= Enter the shipping cost of the item here (optional)
tax= Enter a flat tax amount to add to the item here (optional)
cn= custom notes you want to add to this order

          

PayPal Subscribe/Subscription Link

Lets you create a paypal subscription button. Create recurring billings easily.

View code:


<!-- DC PayPal Subscription Link Start -->
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
 <input type="hidden" name="cmd" value="_xclick-subscriptions">
 <input type="hidden" name="business" value="your@paypalaccuont.com">
 <input type="hidden" name="item_name" value="Name of subscription item"> 
 <input type="hidden" name="a3" value="29.95"> <!-- subscription price -->
 <input type="hidden" name="p3" value="1">  <!-- rebill every x value -->
 <input type="hidden" name="t3" value="M">  <!-- interval M=month/W=week/Y=year -->
 <input type="hidden" name="src" value="1"> <!-- Is this recurring 1=yes/0=no -->
 <input type="hidden" name="currency_code" value="USD">
 <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_subscribeCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
</form>
<!-- DC PayPal Subscription Link End -->


Parameters:
---------------------
business= enter your paypal email address
item_name= description of subscription item
a3= subscription price
currency_code= (USD/EUR/AUD/GBP/CAD) currency to use 
p3= rebill every x value
t3= billing interval (M=month/W=week/Y=year)
src= is this a recurring charge (1=yes/0=no)
cn= custom notes you want to add to this order
sra= reattempt failed payments? (1=yes/0=no)

          

PayPal unSubscribe Link

Let your customers unsubscribe from active subscriptions.

View code:


<!-- DC PayPal unSubscribe Link Start -->
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
 <input type="hidden" name="cmd" value="_subscr-find">
 <input type="hidden" name="alias" value="YOUR@PAYPALACCOUNT.COM">
 <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_unsubscribe_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
</form>
<!-- DC PayPal unSubscribe Link End -->


Parameters:
---------------------
business= enter your paypal email address

          

PayPal Donation Link

Accept donations with ease using this simple shortcode.

View code:


<!-- DC PayPal Donation Link Start -->
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
 <input type="hidden" name="cmd" value="_donations">
 <input type="hidden" name="business" value="YOUR@PAYPALACCOUNT.COM">
 <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
</form>
<!-- DC PayPal Donation Link End -->


Parameters:
---------------------
business= Enter your paypal email address

          


© TemplateAccess