# Donation Amount Minimums
Each donation form has a minimum donation amount configuration. In additions to that, the Save the Children implementation was set in a way to set a higher global donation amount minimum.
The minimums for one-time and recurring gifts are set separately. The values are defined in the PageBuilder reusable reus_donation__minimum_variables.
The global minimum for both types of gifts have been set to $10.
# Changing the Global Minimum
- Edit the PageBuilder page
reus_donation__minimum_variables. - To update the one-time donation amount minimum change the code
[[U0:oneTimeDonationMinimum=10]], where10is replaced by a desired number. - To update the recurring/monthly donation amount minimum change the code
[[U0:recurringDonationMinimum=10]], where10is replaced by a desired number. This will be use for monthly recurrence only. - To update the quarterly donation amount minimum change the code
[[U0:quarterlyDonationMinimum=30]], where30is replaced by a desired number. - To update the yearly donation amount minimum change the code
[[U0:yearlyDonationMinimum=120]], where120is replaced by a desired number.
# Changing Minimum on a Donation Form
- Edit the donation form.
- Edit the first HTML caption that contains all the donation form settings.
- Add code
[[U0:oneTimeDonationMinimum=10]]or[[U0:recurringDonationMinimum=10]], etc, based on which minimum amount needs to be changed. Replace10by the desired minimum amount that should be set on this form only. Note, the minimum set to the session variable, should not be lower than the minimum amount set on the donation form in step 2, donation levels configuration.