gpt4 book ai didi

php - 在 WooCommerce 中以编程方式获取购物车税总额

转载 作者:可可西里 更新时间:2023-10-31 22:09:27 25 4
gpt4 key购买 nike

如何在 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' );

最佳答案

  1. 全局$woocommerce; $woocommerce->cart 对于购物车来说已经过时了。请改用 WC()->cart
    在这里你可以直接使用 $cart (object) 参数来代替......
  2. 正确的属性是 taxes 而不是 tax_total
  3. 最好使用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 文件或任何插件文件。

此代码已经过测试并且可以工作。

关于php - 在 WooCommerce 中以编程方式获取购物车税总额,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43422067/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com