Title: minimum order value
Last modified: June 2, 2022

---

# minimum order value

 *  Resolved [fmiro](https://wordpress.org/support/users/fmiro/)
 * (@fmiro)
 * [4 years ago](https://wordpress.org/support/topic/minimum-order-value-3/)
 * Helo
    How to assign a certain minimum order value to a gift card

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

 *  Plugin Author [pimwick](https://wordpress.org/support/users/pimwick/)
 * (@pimwick)
 * [4 years ago](https://wordpress.org/support/topic/minimum-order-value-3/#post-15713771)
 * There isn’t an option built into the plugin to prevent redeeming a gift card 
   until a certain amount has been added to the cart, however you could accomplish
   this using custom code with the **pwgc_gift_card_can_be_redeemed** hook:
 * For example:
 * 1. Download the free Code Snippets plugin: [https://wordpress.org/plugins/code-snippets/](https://wordpress.org/plugins/code-snippets/)
   
   2. Create a new Snippet with the following code (you can add the snippet to your
   functions.php instead of using Code Snippets if you are more familiar with that):
 *     ```
       function custom_pwgc_git_card_can_be_redeemed( $message, $gift_card ) {
           $gift_card_allowed = true;
   
           //
           // Here is where you need to write code to determine
           // if the cart will allow a gift card to be redeemed.
           //
   
           if ( ! $gift_card_allowed ) {
               $message = 'Gift cards cannot be used until order total is greater than $x.';
           }
   
           return $message;
       }
       add_filter( 'pwgc_gift_card_can_be_redeemed', 'custom_pwgc_git_card_can_be_redeemed', 10, 2 );
       ```
   
 *  Plugin Author [pimwick](https://wordpress.org/support/users/pimwick/)
 * (@pimwick)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/minimum-order-value-3/#post-15762852)
 * I’m marking this thread as resolved but let us know if you have any other questions.

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

The topic ‘minimum order value’ is closed to new replies.

 * ![](https://ps.w.org/pw-woocommerce-gift-cards/assets/icon-256x256.png?rev=1809373)
 * [PW WooCommerce Gift Cards](https://wordpress.org/plugins/pw-woocommerce-gift-cards/)
 * [Support Threads](https://wordpress.org/support/plugin/pw-woocommerce-gift-cards/)
 * [Active Topics](https://wordpress.org/support/plugin/pw-woocommerce-gift-cards/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/pw-woocommerce-gift-cards/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/pw-woocommerce-gift-cards/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [pimwick](https://wordpress.org/support/users/pimwick/)
 * Last activity: [3 years, 11 months ago](https://wordpress.org/support/topic/minimum-order-value-3/#post-15762852)
 * Status: resolved