WooCommerce: Deny Checkout if User Has Pending Orders

As WooCommerce snippet requests by #BloomerArmada fans keep coming to my inbox, it’s time to publish a very useful functionality.

Today, we’ll see how to deny purchasing to a given billing email address, if this is a user and happens to have a pending order already!

Deny checkout if user has a pending order in WooCommerce

PHP Snippet: Deny Checkout if User Has Pending Orders | WooCommerce


/**
 * @snippet       Deny Checkout to User With Pending Orders | WooCommerce
 * @how-to        Get CustomizeWoo.com FREE
 * @sourcecode    https://businessbloomer.com/?p=55387
 * @author        Rodolfo Melogli
 * @testedwith    WooCommerce 3.0.5
 */

add_action('woocommerce_after_checkout_validation', 'bbloomer_deny_checkout_user_pending_orders');

function bbloomer_deny_checkout_user_pending_orders( $posted ) {
global $woocommerce;
$checkout_email = $posted['billing_email'];
$user = get_user_by( 'email', $checkout_email );

if ( ! empty( $user ) ) {
$customer_orders = get_posts( array(
        'numberposts' => -1,
        'meta_key'    => '_customer_user',
        'meta_value'  => $user->ID,
        'post_type'   => 'shop_order', // WC orders post type
        'post_status' => 'wc-pending' // Only orders with status "completed"
) );
foreach ( $customer_orders as $customer_order ) {
        $count++;
}
if ( $count > 0 ) {
	wc_add_notice( 'Sorry, please pay your pending orders first by logging into your account', 'error');
}
}

}

Where to add custom code?

You should place custom PHP in functions.php and custom CSS in style.css of your child theme: where to place WooCommerce customization?

This code still works, unless you report otherwise. To exclude conflicts, temporarily switch to the Storefront theme, disable all plugins except WooCommerce, and test the snippet again: WooCommerce troubleshooting 101

Related content

  • WooCommerce: Cart and Checkout on the Same Page
    This is your ultimate guide – complete with shortcodes, snippets and workarounds – to completely skip the Cart page and have both cart table and checkout form on the same (Checkout) page. But first… why’d you want to do this? Well, if you sell high ticket products (i.e. on average, you sell no more than […]
  • WooCommerce: Disable Payment Method If Product Category @ Cart
    Today we take a look at the WooCommerce Checkout and specifically at how to disable a payment gateway (e.g. PayPal) if a specific product category is in the Cart. There are two tasks to code in this case: (1) based on all the products in the Cart, calculate the list of product categories in the […]
  • WooCommerce: Add Privacy Policy Checkbox @ Checkout
    Here’s a snippet regarding the checkout page. If you’ve been affected by GDPR, you will know you now need users to give you Privacy Policy consent. Or, you might need customer to acknowledge special shipping requirements for example. So, how do we display an additional tick box on the Checkout page (together with the existing […]
  • WooCommerce: Redirect to Custom Thank you Page
    How can you redirect customers to a beautifully looking, custom, thank you page? Thankfully you can add some PHP code to your functions.php or install a simple plugin and define a redirect to a custom WordPress page (as opposed to the default order-received endpoint). This is a great way for you to add specific up-sells, […]
  • WooCommerce: Disable Payment Gateway by Country
    You might want to disable PayPal for non-local customers or enable a specific gateway for only one country… Either way, this is a very common requirement for all of those who trade internationally. Here’s a simple snippet you can further customize to achieve your objective. Simply pick the payment gateway “slug” you want to disable/enable […]

Rodolfo Melogli

Business Bloomer Founder

Author, WooCommerce expert and WordCamp speaker, Rodolfo has worked as an independent WooCommerce freelancer since 2011. His goal is to help entrepreneurs and developers overcome their WooCommerce nightmares. Rodolfo loves travelling, chasing tennis & soccer balls and, of course, wood fired oven pizza. Follow @rmelogli

22 thoughts on “WooCommerce: Deny Checkout if User Has Pending Orders

  1. Good day.

    The Message pops up, but I can stil proceed with checkout. Am I missing sommeting?

    1. Hi Aldo, are you on the default WooCommerce checkout page?

  2. my question is if a user has a pending order show a message in a popup or otherplace and tell them to go to myorder and complete the order. How can i deliver this message.

    1. Hi Yakub, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!

  3. Why don’t you use:

    $customer_orders = new WP_Query(
        array(
            'meta_key'    => '_customer_user',
            'meta_value'  => $user->ID,
            'post_type'   => 'shop_order',
            'post_status' => 'wc-pending',
            'fields' => 'ids',
        )
     );
    
    $count = $customer_orders->found_posts;
    

    instead of:

    $customer_orders = get_posts( array(
            'numberposts' => -1,
            'meta_key'    => '_customer_user',
            'meta_value'  => $user->ID,
            'post_type'   => 'shop_order', // WC orders post type
            'post_status' => 'wc-pending' // Only orders with status "completed"
    ) );
    foreach ( $customer_orders as $customer_order ) {
            $count++;
    }
    

    This is a fastest way.

    1. Excellent, thank you!

  4. Hi Rodolfo and thank you for all your useful snippets.
    Something I don’t get or have missed, I understood how to display such or such notice to the customer but how to disable the payment stuff.
    With all the tests I have done, I still can proceed to the payment. Where is the flag to forbide to proceed the payment?
    I don’t see any “false” in the various snippets you shared.
    Once again, I missed maybe something.
    Thank you
    Fred

    1. Thanks for that Fred. For some reason I thought displaying the error was also denying payment, but if you tested and it doesn’t then another piece of code is required. Use this for inspiration: https://businessbloomer.com/woocommerce-deny-checkout-user-pending-orders/

  5. Is it possible to also include guest users in this based on the fact you are checking vs email?

    Sorry, kind of a n00b but trying to work this function into exactly what I need ๐Ÿ™‚

    1. I don’t think so! Sorry ๐Ÿ™‚

  6. Hi

    Can you tell me if the code still works?

    I used in wordpress version 4.9.4, woocommerce version 3.3.3 and php 7.1. Hostgator hosting.

    The theme, is a free of the wordpress repository, is called Envo Business.

    I did some tests, and it did not work around here.

    1. Hey Sandro, thanks so much for your comment! It definitely should work, I don’t see why not. Users must be registered (no guest users) and their order status must be “pending” (not “on-hold” etc.). Let me know

  7. You can actually just grab the current WP user instead of get a billing email. You can also just do a direct PHP count() on the orders to get the number of pending orders. Cleaned it up a little with these two items.

    add_action('woocommerce_before_checkout_form', 'bbloomer_deny_checkout_user_pending_orders');
    function bbloomer_deny_checkout_user_pending_orders( $posted ) {
        global $woocommerce;
    
        // Get current customer/user
        $customer = wp_get_current_user();
    
        // If user is not empty, get orders
        if (!empty($customer)) {
            $customer_orders = get_posts(
                array(
                    'numberposts' => -1,
                    'meta_key'    => '_customer_user',
                    'meta_value'  => $customer->ID,
                    'post_type'   => 'shop_order', // WC orders post type
                    'post_status' => 'wc-pending' // Only orders with status "completed"
                )
            );
    
            // Check number of pending customer orders
            if ( count($customer_orders) > 0 ) {
                wc_add_notice('Sorry, please pay your pending orders first by logging into your account', 'error');
            }
        }
    }
    
    1. Thanks so much Bobbie, much appreciated!

  8. Cool snippet. Bravo!

    Can we deny if only customer have 2 pending order (not one in snippet). Sometimes customer made split order in their purchasing, 2 pending order is more convenient treat.

    Thanks rodolfo, youre cool. Kind regards

    1. Thanks Thomas! Yes, of course, that’s why I put a counter in the PHP – just change that to:

      if ( $count > 1 ) {
      
  9. Very useful, thank you!
    I’m trying to find a way to do something similar…. I need to deny the checkout (or hide the add to card button in the single products page) if a customer has already bought ( in other orders) a certain product in the past and try to buy it again.

  10. Hi Rodolfo
    I’m a bit confused here apologies. If a customer selects items to purchase and then checks out before completion, then transaction stops. So should they return the process just begins again. I can see merit in previous post ‘re b2b where credit is involved.
    I might not be getting this.

    1. No worries Denis! So my thinking is that if a user goes to checkout, completes all the info, goes to the payment page and does not complete the order – then I would like to block such user to keep placing orders until they pay the previous. Of course, this will need to be coupled with an email reminder “please pay your pending order” before stopping them from placing another one.

      Note that the order will go into “pending” only if they click on “proceed to payment” button e.g. they go to PayPal ๐Ÿ™‚

  11. Interesting snippet Rodolfo!

    Would be cool if this can be extended to accomodate a custom field “max_allowed_credit” which can be set at user profile by merchant.
    This way you can use it in a B2B environment where clients often can buy with conditions like invoice 30 days net. But when the total amount is larger than X EUR/US$, then show this notification.

    Another cool trick would be to dynamically change the available payment methods.
    As long as they have no pending orders/payments, allow payment via COD/check/invoice net x days. If they have, then hide those options and only show prepaid methods like paypal, creditcard, etc…

    1. Cheers Fabio, nice ideas ๐Ÿ™‚

Questions? Feedback? Customization? Leave your comment now!
_____

If you are writing code, please wrap it like so: [php]code_here[/php]. Failure to complying with this, as well as going off topic or not using the English language will result in comment disapproval. You should expect a reply in about 2 weeks - this is a popular blog but I need to get paid work done first. Please consider joining the Business Bloomer Club to get quick WooCommerce support. Thank you!

Your email address will not be published. Required fields are marked *