שימו לב שניתן לעדכן מחיר מינימום למשלוח חינם ובנוסף את ההודעה אשר תופיע ללקוח
add_action( 'woocommerce_before_cart', 'bbloomer_free_shipping_cart_notice' );
function bbloomer_free_shipping_cart_notice() {
$min_amount = 350; //change this to your free shipping threshold
$current = WC()->cart->subtotal;
if ( $current < $min_amount ) {
$added_text = ' עלות משלוח 30 ש"ח, כדי לקבל משלוח חינם מעל 350 ש"ח הוסף מוצרים בסך ' . wc_price( $min_amount - $current ) . ' נוספים!'; $return_to = wc_get_page_permalink( 'shop' );
$notice = sprintf( '<a href="%s" class="button wc-forward">%s</a> %s', esc_url( $return_to ), 'המשך בקניות', $added_text );
wc_print_notice( $notice, 'notice' );
}
}