Displays a cart notice when the cart subtotal is close to a free shipping threshold.
add_action( 'woocommerce_before_cart', 'wpfolks_free_shipping_notice' );
function wpfolks_free_shipping_notice() {
$threshold = 100;
$subtotal = (float) WC()->cart->get_subtotal();
if ( $subtotal > 0 && $subtotal < $threshold ) {
wc_print_notice( sprintf( 'Add %s more to unlock free shipping.', wc_price( $threshold - $subtotal ) ), 'notice' );
}
}