skip to Main Content

I want to remove the Shipping row in Checkout in the review order table in Woocommerce-Wordpress.

I tried using simple CSS but nothing happened.
Code I was using:

tr.woocommerce-shipping-totals shipping { 
    display: none !important; 
}

Preview Row

2

Answers


  1. Try with:

    tr.shipping { 
        display: none !important; 
    }
    
    Login or Signup to reply.
  2. Path: woocommerce/cart/cart-shipping.php

    and

    wp_kses_post( $package_name )

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search