6

您如何functions.php在 WordPress 的页面中获取 WooCommerce 中的税款总额,使用:

global $woocommerce;

$discount = $woocommerce->cart->tax_total;

但是没有返回任何值。

如何获得购物车税总额?

本质上,我希望为用户计算税款,但随后将其减少,因为客户将支付 COD 税款。

完整代码如下:

add_action( 'woocommerce_calculate_totals', 'action_cart_calculate_totals', 10, 1 );
function action_cart_calculate_totals( $cart_object ) {

    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    if ( !WC()->cart->is_empty() ):
        $cart_object->cart_contents_total *= .10 ;

    endif;
}


//Code for removing tax from total collected
function prefix_add_discount_line( $cart ) {

  global $woocommerce;

  $discount = $woocommerce->cart->tax_total;

  $woocommerce->cart->add_fee( __( 'Tax Paid On COD', 'your-text-domain' ) , - $discount );

}
add_action( 'woocommerce_cart_calculate_fees', 'prefix_add_discount_line' );
4

3 回答 3

6
于 2017-04-15T12:55:44.107 回答
2

您使用了错误的函数名称。正确的功能如下:-

WC()->cart->get_tax_totals( );

而不是使用 $woocommerce->cart->tax_total; 要获得购物车总税,您可以通过从购物车总数中减去不含税的购物车总数来做到这一点。

您可以通过以下代码执行此操作:-

$total_tax = floatval( preg_replace( '#[^\d.]#', '', WC()->cart->get_cart_total() ) ) - WC()->cart->get_total_ex_tax();

如果您想获取所有税款的数组,那么您可以通过以下代码:-

WC()->cart->get_taxes( );
于 2017-04-15T04:55:24.177 回答
0

我们可以使用这个对我有用的功能。

WC()->cart->get_total_tax();
于 2022-03-01T06:30:50.207 回答