04-15-2013, 02:56 PM
I've done this myself to suit my needs as well as lower amount consumes most of the money as tax only.
Do this:
1. Open bank.php and find:
Then edit "($cash < 1)" to any of the minimum amount you want. For example, if you want €5, replace it with "($cash < 5)" (without quotes, of course).
Next, open "system/payments/paypal/add_cash.php", find:
Here to edit it with your minimum amount, i.e. for €5, replace above line with:
We needed to edit above file because if to stop direct access of that file and abuse the minimum money requirements by editing cash amount.
So by editing above last file, even if he would enter 0.01, it would be automatically set to 5 euros as minimum.
Do this:
1. Open bank.php and find:
PHP Code:
Hidden content for guests
Then edit "($cash < 1)" to any of the minimum amount you want. For example, if you want €5, replace it with "($cash < 5)" (without quotes, of course).
Next, open "system/payments/paypal/add_cash.php", find:
PHP Code:
Hidden content for guests
Here to edit it with your minimum amount, i.e. for €5, replace above line with:
PHP Code:
Hidden content for guests
We needed to edit above file because if to stop direct access of that file and abuse the minimum money requirements by editing cash amount.
So by editing above last file, even if he would enter 0.01, it would be automatically set to 5 euros as minimum.