• function disable_shipping_calc_on_cart( $show_shipping ) {
        if( is_cart() ) {
            return false;
    
        }
        return $show_shipping;
    }
    add_filter( 'woocommerce_cart_ready_to_calc_shipping', 'disable_shipping_calc_on_cart', 99 );

    this removes shipping but i want to remove the added fees as well from cart page. A bank fee is by woocommerce plugin fees, i want to remove it on cart page.

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Remove all cart fees’ is closed to new replies.