Hi everybody,
I have find the solution ??
We must remove the cart total and cross sells with:
remove_action( 'woocommerce_cart_collaterals', 'woocommerce_cart_totals', 10 );
remove_action( 'woocommerce_cart_collaterals', 'woocommerce_cross_sell_display', 10 );
Then add them in the right direction:
add_action( 'woocommerce_cart_collaterals', 'woocommerce_cart_totals', 10 );
add_action( 'woocommerce_cart_collaterals', 'woocommerce_cross_sell_display', 20 );
I hope it can help.
Best regards.