Skip to main content
FolksSpeakersPluginsThemesEventsSnippetsShippedCommunityResources
Login Join
Snippet · PHP

Show Free Shipping Notice in Cart

Shared by Yusuf mudagal · May 3, 2026 · @woocommerce_before_cart

1 view
Back to Snippets

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' );
    }
}