Free shipping maksimum Rp 20.000?
-
Haloo kak sofyan,
Ingin follow up lagi untuk thread yang tahun lalu..
Mau tanya apakah plugin ini bisa support free shipping dengan maksimum potongan?Contohnya free shipping maksimum potongan Rp 20.000
Jadi untuk ongkir yang contohnya Rp 27.000, customer membayar Rp 7.000Saya coba code yang ini belum bisa kak:
function woocommerce_shipping_method_add_rate_args_woongkir( $rate ) { $shipping_discount = 20000; if ( isset( $rate['id'], $rate['cost'] ) && strpos( $rate['id'], 'woongkir:' ) === 0 && $rate['cost'] >= $shipping_discount ) { $rate['cost'] = $rate['cost'] - $shipping_discount; } return $rate; } add_filter( 'woocommerce_shipping_method_add_rate_args', 'woocommerce_shipping_method_add_rate_args_woongkir' );
Terima kasih!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Free shipping maksimum Rp 20.000?’ is closed to new replies.