首页 文章

Woocommerce从结帐小计中排除税

提问于
浏览
2

我使用下面的钩子当前从购物车上的小计中排除税 . 但是在结帐时更换购物车不在文档中 .

如何从Checkout页面小计中排除税金?

谢谢 .

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 回答

  • 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;
    }
    

相关问题