Для этого вам нужно отредактировать следующие шаблоны:
templates / order / order-details.php & templates / order / order-details-item.php
Сначала скопируйте оба шаблонав вашей активной папке темы и добавьте эти строки <th class="woocommerce-table__product-image product-image"><?php _e( 'Image', 'woocommerce' ); ?></th>
в order-details.php и <td class="woocommerce-table__product-image product-image"><?php echo $product->get_image('thumbnail'); ?></td>
в order-details-item.php .Если вам нужна ссылка на функцию get_image, проверьте это: https://docs.woocommerce.com/wc-apidocs/class-WC_Product.html
order-details.php
<thead>
<tr>
<th class="woocommerce-table__product-name product-name"><?php _e( 'Product', 'woocommerce' ); ?></th>
<th class="woocommerce-table__product-image product-image"><?php _e( 'Image', 'woocommerce' ); ?></th>
<th class="woocommerce-table__product-table product-total"><?php _e( 'Total', 'woocommerce' ); ?></th>
</tr>
</thead>
order-details-item.php
<td class="woocommerce-table__product-name product-name"></td>
<td class="woocommerce-table__product-image product-image"><?php echo $product->get_image('thumbnail'); ?></td>
<td class="woocommerce-table__product-total product-total">
<?php echo $order->get_formatted_line_subtotal($item); ?>
</td>