在Woocommerce结账后更改订单总额



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

我应该

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

可以在woocommerce_checkout_create_order动作钩子中完成,您必须将 CRUD getter 和 setter 方法用于WC_Abstract_OrderWC_Order类......

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

此钩子是在订单数据使用 $order->save(); 保存在数据库中之前触发的。你可以在源代码中看到这一点 这里.

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

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活动子主题(或主题(的文件。

经过测试并工作。

这里有一些解释:在Woocommerce中为订单添加额外的元

相关内容

  • 没有找到相关文章

最新更新