0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Welcartのカートで消費税と税込価格を出す

Posted at

image.png

こんな感じに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">&nbsp;</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">&nbsp;</th>
</tr>

もっといいスマートなやり方があるはずです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?