在 WooCommerce 中以编程方式获取购物车税总额
Get Cart Tax Total programmatically in WooCommerce
如何在 WordPress 的 functions.php
页面中获取 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' );
您使用了错误的函数名称。正确的函数如下:-
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( );
global $woocommerce; $woocommerce->cart
对于购物车来说已经过时了。请改用 WC()->cart
。
这里可以直接使用$cart
(object)参数代替...
- 正确的属性是
taxes
而不是tax_total
.
- 最好使用 WC_Cart get_taxes() 方法来与 WooCommerce 3.0+ 版本兼容
要实现您的目标,您的代码将是:
// For Woocommerce 2.5+ (2.6.x and 3.0)
add_action( 'woocommerce_cart_calculate_fees', 'prefix_add_discount_line', 10, 1 );
function prefix_add_discount_line( $cart ) {
if ( is_admin() && ! defined( 'DOING_AJAX' ) )
return;
$discount = 0;
// Get the unformated taxes array
$taxes = $cart->get_taxes();
// Add each taxes to $discount
foreach($taxes as $tax) $discount += $tax;
// Applying a discount if not null or equal to zero
if ($discount > 0 && ! empty($discount) )
$cart->add_fee( __( 'Tax Paid On COD', 'your-text-domain' ) , - $discount );
}
代码进入您的活动子主题(或主题)的 function.php 文件或任何插件文件。
此代码已经过测试并且有效。
我们可以使用这个对我有用的功能。
WC()->cart->get_total_tax();
如何在 WordPress 的 functions.php
页面中获取 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' );
您使用了错误的函数名称。正确的函数如下:-
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( );
global $woocommerce; $woocommerce->cart
对于购物车来说已经过时了。请改用WC()->cart
。
这里可以直接使用$cart
(object)参数代替...- 正确的属性是
taxes
而不是tax_total
. - 最好使用 WC_Cart get_taxes() 方法来与 WooCommerce 3.0+ 版本兼容
要实现您的目标,您的代码将是:
// For Woocommerce 2.5+ (2.6.x and 3.0)
add_action( 'woocommerce_cart_calculate_fees', 'prefix_add_discount_line', 10, 1 );
function prefix_add_discount_line( $cart ) {
if ( is_admin() && ! defined( 'DOING_AJAX' ) )
return;
$discount = 0;
// Get the unformated taxes array
$taxes = $cart->get_taxes();
// Add each taxes to $discount
foreach($taxes as $tax) $discount += $tax;
// Applying a discount if not null or equal to zero
if ($discount > 0 && ! empty($discount) )
$cart->add_fee( __( 'Tax Paid On COD', 'your-text-domain' ) , - $discount );
}
代码进入您的活动子主题(或主题)的 function.php 文件或任何插件文件。
此代码已经过测试并且有效。
我们可以使用这个对我有用的功能。
WC()->cart->get_total_tax();