Is there a way to confirm the actual amount of the donations? I mean after the fees.
For example a 5 USD donation only gives you 4,5 USD. If I try to edit the amount to 4,5 USD, it changes to 4 USD...
~~Edit~~
Changing "amount" type to DECIMAL(6,2) added a .00 decimal to the amounts on the donation list, but if I try changing that to .50 via the plugin's "edit" option, it gets reset back to .00
If I edit the amount in the database itself, there's no problem with the decimals... What am I missing?
~~Edit2~~
Okay, I solved it.
Turns out I also had to go to "ACP>Plugins & Products>Plugin Manager>Product : VSa - PayPal Donate>VSa - PayPal Donate - Ext" and change both instances of:
Code:
'amount' => TYPE_UINT,
to:
Code:
'amount' => TYPE_DECIMAL,