woocommerce滿額免運修正程式

當woocommerce設定滿額免運,在結帳卻會顯示讓客戶自己選運費或免運費,這樣的顯示很奇怪,我們需要打開主題編輯器,打開後選右邊佈景函式庫(functions.php),在最底部加上

add_filter( 'woocommerce_package_rates', 'hide_shipping_when_free_is_available', 100 );
function hide_shipping_when_free_is_available( $rates ) {
$free = array();


foreach ( $rates as $rate_id => $rate ) {
if ( 'free_shipping' === $rate->method_id ) {
$free[ $rate_id ] = $rate;
break;
}
}


return ! empty( $free ) ? $free : $rates;
}

即可順利在結帳時判定客戶需不需運費

留言

這個網誌中的熱門文章

woocommerce 台灣地址選單,解決離島不配送問題

woocommerce 外加程式與主題衝突導致網站開不起來