Woocommerce运费和总计计算不正确

时间:2019-04-27 08:10:06

标签: php wordpress woocommerce tax shipping-method

目前,税收总额仅基于小计,不包括运费

产品$ 129

购物车总额129美元

运费$ 35

小计$ 164

tax(10%)应该是$ 16.40,但应该是$ 12.90

总计$ 176.90应该是$ 180.40

enter image description here

如您所见,我将“总计”重命名为“购物车总计”

并在发货后在cart-totals.php和review-order.php模板内使用此代码添加了一个“小计”

<tr class="cart-subtotal">
    <th><?php printf( __( 'Sub Total %s', 'woocommerce' ), '' );?></th>
    <td><?php echo wc_price( WC()->cart->get_subtotal() + WC()->cart->get_shipping_total() ); ?></td>
</tr>

我不知道如何正确地计算TAX,我应该为此使用什么代码,有什么帮助...谢谢

1 个答案:

答案 0 :(得分:1)

您需要启用运输税:

1)在您的税收设置中为其选择正确的税率:

enter image description here

2)在相关的运输方式上,检查是否已启用税金:

enter image description here