woocommerce - 获得不含税的总购物车价格

时间:2014-07-16 12:19:39

标签: php wordpress wordpress-plugin wordpress-theming woocommerce

我正在使用Woocommerce for Wordpress来建立网店。

在结帐时,我想要包含总价格税。我该怎么做呢?我发现了像get_total_ex_tax()'这样的内容,但它不起作用。也许我把它格式化错误,或者在错误的地方或其他地方。有没有人有想法?

谢谢!

1 个答案:

答案 0 :(得分:2)

这是显示除税前税后总额的代码

add_action( 'woocommerce_review_order_after_shipping', 'output_total_excluding_tax' );
function output_total_excluding_tax() {
  ?>
  <tr class="total_ex_tax">
    <th>Total Excluding Tax</th>
    <td><?php echo WC()->cart->get_total_ex_tax(); ?></td>
  </tr>
  <?php
}
相关问题