How to add a Paypal "buy now" button in my DotNetNuke web site?
Top : DotNetNuke
| Article ID: |
 |
000043 |
| Rating: |
 |
5.0 / 5.0 (13 votes)
|
| Views: |
 |
53900 |
|
|
How to add a Paypal "buy now" button in my DotNetNuke web site?
|
Please follow these steps to add a Paypal "buy now" button in your DotNetNuke web site.
1) Login as "admin" to your DNN web site.
2) Edit the module that you want to add a "buy now" button.
3) Copy & paste the following html code to your module where you want to insert a "buy now" button.
<a href="[Paypal Email Link]" target="_blank" style="border-width:0px;">
<img src="https://www.paypal.com/en_US/i/btn/x-click-but23.gif" border="0" />
</a>
4) Go to paypal web site https://www.paypal.com/ and login
5) Go to https://www.paypal.com/us/cgi-bin/webscr?cmd=xpt/cps/merchant/wpstandard/WPStandardRefImpl3 and create your button. You need to select "No" (default is "Yes") in "Click Yes to encrypt your payment button" section.
6) Copy the content in "Link for Emails" box.
7) Go to your DNN module above and replace the [Paypal Email Link] with the Paypal link. The html code should be
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=orders%40databasemart%2ecom&undefined_quantity=1&item_name=Database%20Mart%20LLC%20Web%20Hosting%20Service&amount=12%2e99&no_shipping=0¤cy_code=USD&bn=PP%2dBuyNowBF&charset=UTF%2d8"target="_blank" style="border-width:0px;">
<img src="https://www.paypal.com/en_US/i/btn/x-click-but23.gif" alt="" border="0" />
</a>
8) Update the module.
Now you should a "Pay Now" button in your web site.
|