在WooCommerce中结账后的变更单合计

我似乎找不到在用户单击结账后使用哪个钩子来更改总数(或购物车的任何变量)。例如,用户提交了结账表单,然后我需要进行一些检查并相应地更改总数。

我应该如何做,我应该使用哪个挂钩?


解决方案

可以在woocommerce_checkout_create_order操作挂钩中完成,在该钩子中,您必须为WC_Abstract_OrderWC_Order类使用CRUD getters和setters方法...

由于购物车对象和购物车会话尚未销毁,您还可以使用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 );
}

代码放在活动子主题(或主题)的函数.php文件中。

已测试并正常工作。

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

相关文章