Skip to content

WooCommerce: No default Shipping

//WOOCOMMERCE - CHECKOUT - No default shipping
function enym_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_action( 'woocommerce_before_checkout_form', 'enym_uncheck_default_shipping_method' );
add_filter( 'woocommerce_shipping_chosen_method', '__return_null' );
An den Anfang scrollen