Paypal donation button?

DarkGizmo

Well-known member
Can someone point me in the right direction on how to make a paypal donate button via HTML? I know Paypal had a thing on their site to make buttons for Donate, Checkout, etc.

However, it's been some time and I can't seem to find it on their website. The info I do find for it, doesn't work for me......

Alternatively, is there a paypal donate add-on for XF2 like there was for XF1 that isn't overly expensive? There was one for XF1 that was free, forgot who coded it.
 
Last edited:
You can create a donations tab following these steps.

Get a paypal.me account

https://www.paypal.me/

Create a Page node

Admin control panel -> Forums -> Nodes -> Add node -> Page

URL portion: donations
Title: Donations
Template HTML:

Code:
<div class="donations">
Your donations are greatly appreciated.
<br /><br />
Thank you.
<br /><br />
<a href="https://paypal.me/johnsmith">Click here to make a donation</a>
</div>

Create a Public navigation

Admin control panel -> Setup -> Public navigation -> Add navigation

Navigation ID: donations
Title: Donations
Display order: 10000
Type: Node
 
You can create a donations tab following these steps.

Get a paypal.me account

https://www.paypal.me/

Create a Page node

Admin control panel -> Forums -> Nodes -> Add node -> Page

URL portion: donations
Title: Donations
Template HTML:

Code:
<div class="donations">
Your donations are greatly appreciated.
<br /><br />
Thank you.
<br /><br />
<a href="https://paypal.me/johnsmith">Click here to make a donation</a>
</div>

Create a Public navigation

Admin control panel -> Setup -> Public navigation -> Add navigation

Navigation ID: donations
Title: Donations
Display order: 10000
Type: Node
Thank you, worked like a charm.
 
Top Bottom