Hide Cart Total if using Cart and Checkout Shortcodes on the same page if using WooCommerce on your child site.
Snippet Type
Execute on Child Sites
Snippet
add_action( 'woocommerce_after_cart_table', 'woocommerce_show_cart_totals', 10 );
function woocommerce_show_cart_totals() {
wc_get_template( 'cart/cart-totals.php' );
}