Woocommerce 从结账小计中排除税费

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

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

如何从结账页面小计中排除税费?

谢谢。

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;
}
php wordpress woocommerce subtotal
1个回答
2
投票

“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;
}
© www.soinside.com 2019 - 2024. All rights reserved.