From 37dbf39df93e9b9ece32cbce14a0f1ba322d9d4b Mon Sep 17 00:00:00 2001 From: Chuck Scott Date: Thu, 18 Jun 2015 17:03:04 -0400 Subject: [PATCH] Modified "Shipping and Handling" message in cart and checkout to only "Shipping" --- woocommerce/cart/cart-shipping.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/woocommerce/cart/cart-shipping.php b/woocommerce/cart/cart-shipping.php index 4fa1852..5b7a0e6 100644 --- a/woocommerce/cart/cart-shipping.php +++ b/woocommerce/cart/cart-shipping.php @@ -19,7 +19,7 @@ if ( ! defined( 'ABSPATH' ) ) { if ( $show_package_details ) { printf( __( 'Shipping #%d', 'woocommerce' ), $index + 1 ); } else { - _e( 'Shipping and Handling', 'woocommerce' ); + _e( 'Shipping', 'woocommerce' ); } ?> -- 2.17.1