成功结账挂钩后获取订单数据

2022-08-30 15:10:39

在WooCommerce中,我想在客户成功签出后向API发送请求。它基本上是一个客户销售在线课程的网站(如udemy)。

当客户签出时,我想发送 API 请求并为该特定课程注册用户。我已经尝试了几个WooCommerce钩子,但没有一个对我有用。

这是我使用的代码:

add_action('woocommerce_checkout_order_processed', 'enroll_student', 10, 1);

function enroll_student($order_id)
{
    echo $order_id;
    echo "Hooked";
}

我正在为插件编写此代码,并使其更容易,我目前正在使用货到付款方法。

任何人都可以指出我哪里出错了,因为当我结账时,我看不到我正在打印的消息“挂钩”,也看不到$order_id

它将我带到成功页面,并且没有显示我正在打印的这两个东西。


答案 1

更新 2仅适用于Woocommerce 3 +(添加了仅执行一次代码的限制)

add_action('woocommerce_thankyou', 'enroll_student', 10, 1);
function enroll_student( $order_id ) {
    if ( ! $order_id )
        return;

    // Allow code execution only once 
    if( ! get_post_meta( $order_id, '_thankyou_action_done', true ) ) {

        // Get an instance of the WC_Order object
        $order = wc_get_order( $order_id );

        // Get the order key
        $order_key = $order->get_order_key();

        // Get the order number
        $order_key = $order->get_order_number();

        if($order->is_paid())
            $paid = __('yes');
        else
            $paid = __('no');

        // Loop through order items
        foreach ( $order->get_items() as $item_id => $item ) {

            // Get the product object
            $product = $item->get_product();

            // Get the product Id
            $product_id = $product->get_id();

            // Get the product name
            $product_id = $item->get_name();
        }

        // Output some data
        echo '<p>Order ID: '. $order_id . ' — Order Status: ' . $order->get_status() . ' — Order is paid: ' . $paid . '</p>';

        // Flag the action as done (to avoid repetitions on reload for example)
        $order->update_meta_data( '_thankyou_action_done', true );
        $order->save();
    }
}

代码进入函数.php活动子主题(或主题)的文件,也可以在任何插件文件中。

相关主题:

代码经过测试并正常工作。


已更新(按照评论中的要求从订单项目中获取产品ID

也许你可以使用woocommerce_thankyou钩子,它将在订单接收页面上显示你的回显代码,这样:

add_action('woocommerce_thankyou', 'enroll_student', 10, 1);
function enroll_student( $order_id ) {

    if ( ! $order_id )
        return;

    // Getting an instance of the order object
    $order = wc_get_order( $order_id );

    if($order->is_paid())
        $paid = 'yes';
    else
        $paid = 'no';

    // iterating through each order items (getting product ID and the product object) 
    // (work for simple and variable products)
    foreach ( $order->get_items() as $item_id => $item ) {

        if( $item['variation_id'] > 0 ){
            $product_id = $item['variation_id']; // variable product
        } else {
            $product_id = $item['product_id']; // simple product
        }

        // Get the product object
        $product = wc_get_product( $product_id );

    }

    // Ouptput some data
    echo '<p>Order ID: '. $order_id . ' — Order Status: ' . $order->get_status() . ' — Order is paid: ' . $paid . '</p>';
}

代码进入函数.php活动子主题(或主题)的文件,也可以在任何插件文件中。

代码经过测试并正常工作。

然后,您可以在$order对象上使用所有类WC_Abstract_Order方法。

相关:


答案 2

而不是“woocommerce_thankyou”钩子,“woocommerce_checkout_order_processed”钩子是相关的钩子。“woocommerce_checkout_order_processed”钩子只会被调用一次,你不需要为每个产品添加meta并进行额外的调用来保持检查代码只运行一次。因为,“woocommerce_thankyou”可以多次调用,每次感谢页面加载时。替换为add_action('woocommerce_thankyou', 'enroll_student', 10, 1);

add_action('woocommerce_checkout_order_processed', 'enroll_student', 10, 1);

并删除元代码和检查。更新的代码是

add_action('woocommerce_checkout_order_processed', 'enroll_student', 10, 1);
function enroll_student( $order_id ) {
// Getting an instance of the order object
$order = wc_get_order( $order_id );

if($order->is_paid())
   $paid = 'yes';
else
  $paid = 'no';

    // iterating through each order items (getting product ID and the product object) 
// (work for simple and variable products)
foreach ( $order->get_items() as $item_id => $item ) {

    if( $item['variation_id'] > 0 ){
        $product_id = $item['variation_id']; // variable product
    } else {
        $product_id = $item['product_id']; // simple product
    }

    // Get the product object
    $product = wc_get_product( $product_id );

}

// Ouptput some data
echo '<p>Order ID: '. $order_id . ' — Order Status: ' . $order->get_status() . ' — Order is paid: ' . $paid . '</p>';

}


推荐