Woocommerce 从结帐小计中排除税款

Posted

技术标签:

【中文标题】Woocommerce 从结帐小计中排除税款【英文标题】:Woocommerce Exclude Tax from Checkout Subtotal 【发布时间】:2016-05-19 17:42:38 【问题描述】:

我目前正在使用下面的钩子从购物车的小计中排除税款。但是文档中没有使用结账功能更换购物车。

如何从结帐页面小计中排除税款?

谢谢。

add_filter( 'woocommerce_cart_product_subtotal', 'exclude_tax_cart_product_subtotal', 15, 4 );
function exclude_tax_cart_product_subtotal( $product_subtotal, $_product, $quantity, $object ) 
    $row_price  = $_product->get_price_excluding_tax( $quantity );
    $ex_tax = wc_price( $row_price );
    return $ex_tax;

【问题讨论】:

【参考方案1】:

“woocommerce_cart_subtotal”过滤器修改了结帐页面中的小计输出。

add_filter( 'woocommerce_cart_subtotal', 'exclude_tax_subtotal', 15, 4 );
function exclude_tax_subtotal( $product_subtotal ) 
    // do whatever you want to do
    return $product_subtotal;

【讨论】:

以上是关于Woocommerce 从结帐小计中排除税款的主要内容,如果未能解决你的问题,请参考以下文章