Вывести сообщение о том, что при сумме заказа более 5000 рублей — доставка бесплатная.
function sp_custom_notice() {
$subtotal = WC()->cart->get_cart_subtotal();
$free_shipping_threshold = 5000;
if ( $subtotal < $free_shipping_threshold ) {
wc_add_notice( 'Сумма покупки больше 5000 руб. Бесплатная доставка!', 'notice' );
}
}
add_action( 'wp', 'sp_custom_notice' );