こんな感じにwelcartで価格を出す。
wc_cart_page.phpの</tfoot>
の直前にコードを足します。
(私はクーポンプラグインなど使っていませんので諸々アレンジしてください。)
wc_cart_page.php
<?php
$total_price = usces_total_price( 'return' );
$tax = $usces->getTax( usces_total_price( 'return' ) );
?>
<tr>
<td colspan="5" class="aright">
<?php _e('consumption tax', 'usces'); ?>
</td>
<td class="aright">
<?php echo usces_crform($tax, true, false); ?>
</td>
<td colspan="2"> </td>
</tr>
<tr>
<th colspan="5" class="aright">
<?php _e('total items','usces'); ?><em class="tax">(税込)</em>
</th>
<th class="aright amount">
<?php echo usces_crform(($total_price + $tax), true, false); ?>
</th>
<th colspan="2"> </th>
</tr>
もっといいスマートなやり方があるはずです。