Hi @mhorniq , Using the donation SDK is different. You would first log in to paypal.com/donate/buttons with the account you want to use to make a Donate button. Then create the predefined button. After you create a button, you get code. From the code, copy: hosted_button_id value if you have a business account business value if you have a personal account. An example for implementing the button on your page would be: <script src="https://www.paypalobjects.com/donate/sdk/donate-sdk.js" charset="UTF-8"></script>
<script>
PayPal.Donation.Button({
env: 'production',
hosted_button_id: 'S2KMEP2EAURGY',
// business: 'PAYPAL_BUSINESS_EMAIL',
image: {
src: 'https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif',
title: 'PayPal - The safer, easier way to pay online!',
alt: 'Donate with PayPal button'
},
onComplete: function (params) {
// Your onComplete handler
},
}).render('#paypal-donate-button-container');
</script> Thank you. Powered by Custom Software : NexWebSites.com PayPal Developers
... View more