アドバイスありがとうございます。
template_func.phpのusces_get_cart_rows()周辺の心当たりをいじってみたのですが、上手くいきませんでした。
よく似た質問の ”「カートの中」デザインのカスタマイズについて ”の質問を参考に「wc_templates」の中の「cart/wc_cart_page.php」と「cart/wc_confirm_page.php」を改変する事で解決できました。
<thead>
<tr>
<th scope=”row” class=”num”><?php _e(‘No.’,’usces’); ?></th>
<th class=”thumbnail”> </th>
<th><?php _e(‘Items’,’usces’); ?></th>
<th class=”price”><?php _e(‘Unit price’,’usces’); ?></th>
<th class=”quantity”><?php _e(‘人数’, ‘usces’); ?></th>
<th class=”subtotal”><?php _e(‘Amount’, ‘usces’); ?></th>
<th class=”action”></th>
</tr>
</thead>
<tbody>
<?php usces_get_confirm_rows(); ?>
のように変えてみました。