Title: Maximum weight
Last modified: April 24, 2024

---

# Maximum weight

 *  Resolved [footstepsdesign](https://wordpress.org/support/users/footstepsdesign/)
 * (@footstepsdesign)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/maximum-weight/)
 * I need to set a maximum weight that i will ship and display a message to the 
   customer if they exceed this
 * So an example might be:
 *     ```wp-block-code
       0 - 99.99kg: $5
       100 - 199.99kg: $7
       200g - 300kg: $10
       ```
   
 * If the users added 300.01kg to the basket I would need the checkout to be disabled
   and for a message like “Sorry we only ship up to 300kg, please contact us for
   larger orders”
 * Is this possible?

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

 *  Plugin Author [Alexandru Tapuleasa](https://wordpress.org/support/users/talextech/)
 * (@talextech)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/maximum-weight/#post-17709747)
 * Well, you can set the upper limit for Table Rates to 300kg which would mean if
   they add anything over the No shipping methods available will be displayed. But
   Table Rate Shipping doesn’t have an option to customize that.
 * You could try adding the below to your theme’s functions.php:
 *     ```wp-block-code
       add_filter( 'woocommerce_no_shipping_available_html', 'custom_no_shipping_message' );
   
       function custom_no_shipping_message( $default_message ) {
           // Customize your message here
           $custom_message = '<p>Sorry we only ship up to 300kg, please contact us for larger orders</p>';
           return $custom_message;
       }
       ```
   
 *  Thread Starter [footstepsdesign](https://wordpress.org/support/users/footstepsdesign/)
 * (@footstepsdesign)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/maximum-weight/#post-17709769)
 * Thanks for the quick response. That’s sounds great.

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

The topic ‘Maximum weight’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce-easy-table-rate-shipping/assets/icon-256x256.
   png?rev=2618390)
 * [Table Rate Shipping for WooCommerce](https://wordpress.org/plugins/woocommerce-easy-table-rate-shipping/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce-easy-table-rate-shipping/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce-easy-table-rate-shipping/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce-easy-table-rate-shipping/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce-easy-table-rate-shipping/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce-easy-table-rate-shipping/reviews/)

## Tags

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

 * 2 replies
 * 2 participants
 * Last reply from: [footstepsdesign](https://wordpress.org/support/users/footstepsdesign/)
 * Last activity: [2 years, 1 month ago](https://wordpress.org/support/topic/maximum-weight/#post-17709769)
 * Status: resolved