WooCommerce: No Default Shipping @ Checkout Page

We already saw how to disable the default payment gateway in the WooCommerce Checkout page, so that users are forced to click on one of the options.

Well, we can do the exact same with the shipping methods!

In this way, customers will be forced to actually click on one of the shipping options. This is helpful when you don’t want to have a default shipping, and when your customers often “forget” to pick the correct one and ask to change it once the order has been placed.

Enjoy!

As you can see, the shipping options are unchecked on Checkout page load. Also, until one is actually clicked on, the payment options won’t be visible, which means the order can’t be placed unless that happens!

PHP Snippet: Disable Default Shipping Method @ WooCommerce Checkout

This snippet adds an action hook that will execute the bbloomer_uncheck_default_shipping_method function before the checkout form is displayed. It destroys the chosen shipping method – if any – to ensure that no default shipping method is pre-selected.

Then, we add inline JavaScript to the page. The JavaScript code inside will be executed when the document body triggers the ‘updated_checkout‘ event.

This JavaScript code waits for the ‘updated_checkout‘ event to occur once (because otherwise it will run every time there is a checkout refresh!), and when it happens, it unchecks all input elements with the class ‘shipping_method‘ (effectively clearing any selected shipping methods).

Finally, just to be sure, we add a filter to remove any default shipping for a givenpackage, before we even get to the Checkout page.

In summary, this code is intended to ensure that no default shipping method is pre-selected when a user reaches the WooCommerce checkout page. It also clears the chosen shipping methods from the session – and then uses JavaScript to uncheck any selected shipping methods visually.

/**
 * @snippet       No Default Shipping @ WooCommerce Checkout
 * @tutorial      Get CustomizeWoo.com FREE
 * @author        Rodolfo Melogli
 * @compatible    WooCommerce 8
 * @community     Join https://businessbloomer.com/club/
 */

add_action( 'woocommerce_before_checkout_form', 'bbloomer_uncheck_default_shipping_method' );

function bbloomer_uncheck_default_shipping_method() {
	WC()->session->set( 'chosen_shipping_methods', null );
	wc_enqueue_js( "
		$( document.body ).one( 'updated_checkout', function() {
			$('input.shipping_method').prop('checked', false);
		});
	" );
}

add_filter( 'woocommerce_shipping_chosen_method', '__return_null' );

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: “You Only Need $$$ to Get Free Shipping!” @ Cart
    This is a very cool snippet that many of you should use to increase your average order value. Ecommerce customers who are near the “free shipping” threshold will try to add more products to the cart in order to qualify for free shipping. It’s pure psychology. Here’s how we show a simple message on the […]
  • 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, […]

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

6 thoughts on “WooCommerce: No Default Shipping @ Checkout Page

  1. code working correctly but when user select billing state the pre-selected shipping method is selected automatically!

    1. I can’t replicate this bug. Can you please temporarily disable everything but Woo and this snippet and try again?

  2. This is great….. I was looking for a solution for this…. I tried your solution which works great and it worked.
    Thank you very much

  3. Hi,
    how to disable default shipping selection also in cart page?

    grazie!

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

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 *