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

问题描述 投票:0回答:3

如何在 WordPress 的

functions.php
页面中获取 WooCommerce 中的税金总额,使用:

global $woocommerce;

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

但没有返回任何值。

如何获得购物车税总额?

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

完整代码如下:

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' );
php wordpress woocommerce cart
3个回答
7
投票
  1. global $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 文件中,或者也位于任何插件文件中。

此代码经过测试并且有效。


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( );

1
投票

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

WC()->cart->get_total_tax();
© www.soinside.com 2019 - 2024. All rights reserved.