add_action( 'pre_get_posts', 'custom_hide_out_of_stock_in_archive' );
function custom_hide_out_of_stock_in_archive( $query ){
if( is_post_type_archive( 'product' ) && $query->is_main_query() ) {
$query->set( 'meta_key', '_stock_status' );
$query->set( 'meta_value', 'instock' );
}
}
add_filter( 'woocommerce_get_image_size_gallery_thumbnail', function( $size ) {
return array(
'width' => 1000,
'height' => 1000,
'crop' => 0,
);
} );
woocommerce/templates/checkout/review-order.php
а конкретно за это место отвечает шаблон
woocommerce/templates/cart/cart-shipping.php