WooCommerce: Deny Checkout Based on Cart Weight

A WooCommerce fan asked me: “How do you deny checkout if the cart weight is above a certain threshold?“.

Well, this is straight forward thanks to a WooCommerce core function called “cart_contents_weight” which allows you to get the total weight of your cart, and then the “wc_add_notice” function which shows a notification error.

Enjoy!

WooCommerce: show checkout error if weight exceeds a threshold

PHP Snippet: Deny WooCommerce Checkout Processing if Cart Weight > Threshold

/**
 * @snippet       Deny Checkout Based on Cart Weight - WooCommerce
 * @how-to        Get CustomizeWoo.com FREE
 * @author        Rodolfo Melogli
 * @compatible    WooCommerce 6
 * @donate $9     https://businessbloomer.com/bloomer-armada/
 */ 

add_action( 'woocommerce_after_checkout_validation', 'bbloomer_deny_checkout_if_weight' );

function bbloomer_deny_checkout_if_weight( $posted ) {
   $max_weight = 100;
   if ( WC()->cart->cart_contents_weight > $max_weight ) {
      $notice = 'Sorry, your cart has exceeded the maximum allowed weight of ' . $max_weight . get_option( 'woocommerce_weight_unit' );
      wc_add_notice( $notice, 'error' );
   }
}

Where to add custom code?

You should place PHP snippets at the bottom of your child theme functions.php file and CSS at the bottom of its style.css file. Make sure you know what you are doing when editing such files - if you need more guidance, please take a look at my guide "Should I Add Custom Code Via WP Editor, FTP or Code Snippets?" and my video tutorial "Where to Place WooCommerce Customization?"

Does this snippet (still) work?

Please let me know in the comments if everything went as expected. I would be happy to revise the snippet if you report otherwise (please provide screenshots). I have tested this code with Storefront theme, the WooCommerce version listed above and a WordPress-friendly hosting.

If you think this code saved you time & money, feel free to join 17,000+ WooCommerce Weekly subscribers for blog post updates and 250+ Business Bloomer supporters for 365 days of WooCommerce benefits. Thank you in advance!

Need Help with WooCommerce?

Check out these free video tutorials. You can learn how to customize WooCommerce without unnecessary plugins, how to properly configure the WooCommerce plugin settings and even how to master WooCommerce troubleshooting in case of a bug!

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.

17 thoughts on “WooCommerce: Deny Checkout Based on Cart Weight

  1. Sadly, it doesn’t work anymore

    1. I find that very unlikely. Did you say it used to work before? What did you do recently in regard to plugin updates etc.?

      1. If this snippet is supposed to be working on the cart page, then it has stopped working…

        1. No, this triggers on the checkout page only

  2. Hello, how can I use this code with a min weight for checkout? I tried

    $min_weight

    instead of

    $max_weight

    and also tried to change the value to a negative value like

    $max_weight = -10;

    , but both won’t work unfortunately. Thanks!

    1. Hello Vasco, 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. how can i restrict bulky items shipping for local and extended area only. No shipping to nation wide for bulky items

    1. can this be achieved by php function?

      1. Hassan, 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!

  4. Is there a way to modify or adapt this snippet to
    1) trigger on combined weight of a specific category
    2) trigger a “request for quote” button

    Thanks

    1. Hello Paul, 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!

  5. Is it possible to deny checkout on specific weeks or months? Like for instance, Once the user checkout already last week, he cannot able to checkout this week, should have 2 – 3 weeks to be able to checkout again.

    1. Hello John, 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!

  6. Is it possible to have the invoice payment gateway option open so that the customer can send the order through?

    I have to calculate the freight manually over 88kg and I would like to disable the other payments to avoid customers paying through card.

    1. Hi Kristoffer, 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!

  7. Awesome Snippet ๐Ÿ™‚

    I want to ask if there any way this will only show up for a regular customer, I have the wholesale plugin for WooCommerce and I don’t want that notice for that user role.

    Thanks a lot for sharing this with the community.

    1. James – thanks so much for your comment! Yes, this is possible – but unfortunately this is custom work and I cannot provide a complementary solution here via the blog comments. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding! ~R

Questions? Feedback? Support? Leave your Comment Now!
_____

If you are writing code, please wrap it between shortcodes: [php]code_here[/php]. Failure to complying with this (as well as going off topic, not writing in English, etc.) will result in comment deletion. 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 BloomerArmada to get blog comment reply priority, ask me 1-to-1 WooCommerce questions and enjoy many more perks. Thank you :)

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