在Woocommerce结账后更改订单总额

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

在用户点击结帐后,我似乎无法找到用于更改总计(或购物车的任何变量)的挂钩。因此,例如,用户提交Checkout表单,然后我需要进行一些检查并相应地更改总计。

我应该怎么做,我使用哪个钩子?

php wordpress woocommerce hook-woocommerce orders
1个回答
4
投票

这可以在woocommerce_checkout_create_order动作钩子中完成,你必须使用CRUD getter和setter方法为WC_Abstract_OrderWC_Order类...

由于购物车对象和购物车会话尚未销毁,您仍然可以使用WC()->cart对象和WC_Cart方法来获取数据...

在使用$order->save();将订单数据保存在数据库中之前触发此挂钩。你可以看到in the source code HERE

下面是一个假的工作示例:

add_action( 'woocommerce_checkout_create_order', 'change_total_on_checking', 20, 1 );
function change_total_on_checking( $order ) {
    // Get order total
    $total = $order->get_total();

    ## -- Make your checking and calculations -- ##
    $new_total = $total * 1.12; // <== Fake calculation

    // Set the new calculated total
    $order->set_total( $new_total );
}

代码位于活动子主题(或主题)的function.php文件中。

经过测试和工作。

这里有一些解释:Add extra meta for orders in Woocommerce

© www.soinside.com 2019 - 2024. All rights reserved.