Title: Control Min Amount
Last modified: August 30, 2016

---

# Control Min Amount

 *  Resolved [WP CMS Ninja](https://wordpress.org/support/users/billiardgreg/)
 * (@billiardgreg)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/control-min-amount/)
 * Is there a way to control the minimum amount for a donation form submission?
 * [https://wordpress.org/plugins/give/](https://wordpress.org/plugins/give/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Thread Starter [WP CMS Ninja](https://wordpress.org/support/users/billiardgreg/)
 * (@billiardgreg)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/control-min-amount/#post-6874648)
 * Figured out how to do this, here is the code that I added to the functions.php
   file to allow for a custom min amount.
 *     ```
       function check_donation_amount($valid_data, $posted) {
       	if ($posted['give-amount'] < 5)
       		give_set_error('donation_amount','The donation amount must be $5 or more. Please go back and select a specified amount or enter a larger donation amount.' ,'give');
       }
   
       add_action( 'give_checkout_error_checks', 'check_donation_amount', 10, 2 );
       ```
   
 *  Plugin Contributor [Devin Walker](https://wordpress.org/support/users/dlocc/)
 * (@dlocc)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/control-min-amount/#post-6874715)
 * Nice, I’m glad you got that figured out. I’m going to add this to: [http://github.com/WordImpress/Give-Snippet-Library](http://github.com/WordImpress/Give-Snippet-Library)

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Control Min Amount’ is closed to new replies.

 * ![](https://ps.w.org/give/assets/icon-256x256.jpg?rev=2873287)
 * [GiveWP - Donation Plugin and Fundraising Platform](https://wordpress.org/plugins/give/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/give/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/give/)
 * [Active Topics](https://wordpress.org/support/plugin/give/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/give/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/give/reviews/)

## Tags

 * [minimum](https://wordpress.org/support/topic-tag/minimum/)

 * 2 replies
 * 2 participants
 * Last reply from: [Devin Walker](https://wordpress.org/support/users/dlocc/)
 * Last activity: [10 years, 4 months ago](https://wordpress.org/support/topic/control-min-amount/#post-6874715)
 * Status: resolved