"Spread the word" page says minimum donation amount is 10 Euro but allows 5 Euro #770
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Donations with 5 Euro are quite ineffective because the transaction costs can already eat more than ¼ of the donation.
Thanks for the report. It's a limitation of HTML's possibilities. AFAIK it's impossible to set something like "this input field can only have the values 0 or more than 10."
Right now we make this possible with a min value of 0 and a "step" of 5. Increasing the step to 10 would mean nobody could donate 15 or 25€...
Do you know a solution to that, except just catching this in the PHP file which would probably cause some frustration?
One possible solution might be to have a checkbox "I want to make a donation" and the input field with a minimum of 10. Also not ideal though, maybe somebody has a better idea.
Possible, but that's a really dirty hack. With the setup we have right now it makes donating (or not donating) simple.
I think it would be possible with some Javascript magic to implement this criterion while providing compatibility for non-JS users, probably with a hard check in the PHP script. But I have no idea of JS to be honest...
See #934
As discussed with Max we propose the following pragmatic solution:
For users with JavaScript enabled that works. If someone without JavaScript tries to submit an amount <10 he will be just redirected to the success page without starting the actual payment process
Let me be clear: a donation of 5 Euro is not a broken leg, it is just highly inefficient, since about 30% to 50% get lost in fees.
So I would be ok with the above proposal, but I would also be ok with just allowing 5 Euro donations for people with disabled JavaScript.
The server side check is now 5 €
Closed with #934