//========== //NO LOGOUT CONFIRMATION /* add_action('check_admin_referer', 'logout_without_confirm', 10, 2); function logout_without_confirm($action, $result) { if ($action…
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' );
