WooCommerce hook for order creation from admin

别说谁变了你拦得住时间么 提交于 2019-12-18 05:20:34

问题


In my custom plugin (working in WooCommerce 2.6.x and 3.x), I need to get the order ID when a new order is created. I tried different hooks but they work only when the customer creates an order and not when an order is created from admin.

I tried:

  • woocommerce_new_order
  • woocommerce_thankyou
  • woocommerce_checkout_order_processed
  • woocommerce_checkout_update_order_meta

Update

Finally I used this:

add_action('wp_insert_post', function($order_id)
{
    if(!did_action('woocommerce_checkout_order_processed') 
        && get_post_type($order_id) == 'shop_order'
        && validate_order($order_id))
    {
         order_action($order_id);
    }
});

where validate_order is:

function validate_order($order_id)
{
    $order = new \WC_Order($order_id);
    $user_meta = get_user_meta($order->get_user_id());
    if($user_meta)
        return true;
    return false;
}

Thanks to validate_order the action isn't executed when you start to create the order. I use !did_action('woocommerce_checkout_order_processed') because I don't want that the action is executed if the order is created by a customer (I have a specific action for that, using woocommerce_checkout_order_processed).


回答1:


If you are using the admin page .../wp-admin/post-new.php?post_type=shop_order to create the new order then there may not be a WooCommerce hook to do this as this order is created by the WordPress core.

However, the WordPress action 'save_post_shop_order' will be called with the $post_ID which is the order id.

See function wp_insert_post() in ...\wp-includes\post.php.




回答2:


You can use this hook woocommerce_process_shop_order_meta is is triggered when an order is manually created from the WordPress admin.



来源:https://stackoverflow.com/questions/44522910/woocommerce-hook-for-order-creation-from-admin

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!