שתף
קוד קצר ומעולה לווקומרס שמאפשר בקלות להסתיר שיטות משלוח אחרות כגון המשלוח בתשלום – ברגע שבפועל זכאים למשלוח בחינם – כדי להמנע ממקרה שלקוח לא שם לב שמגיע לו משלוח חינם ומזמין משלוח בתשלום.
add_action( 'woocommerce_before_checkout_form', 'ts_add_notice_free_shipping' );
function ts_add_notice_free_shipping() {
$free_shipping_settings = get_option('woocommerce_free_shipping_1_settings');
$amount_for_free_shipping = $free_shipping_settings['min_amount'];
$cart = WC()->cart->get_subtotal();
$remaining = $amount_for_free_shipping - $cart;
if ( $amount_for_free_shipping > $cart ) {
$notice = sprintf( "Add %s worth more products to get free shipping", wc_price( $remaining ) );
wc_print_notice( $notice , 'notice' );
}
}