I want to remove the shipping row in check out page whenever the shipping total price is 0. Check this
For now this is the code I got. This code allows to hide the shipping row, Using the shipping fee I can create condition to hide it on check out page. Thank you
function disable_shipping_calc_on_cart($show_shipping) {
if(is_checkout()){
return false;
}
return $show_shipping;
}
add_filter( 'woocommerce_cart_ready_to_calc_shipping', 'disable_shipping_calc_on_cart', 99 );