When an order is placed in WooCommerce, you might want to change/add something in the User Meta programmatically.
For example, you could “check” a custom checkbox in the User Profile. Or maybe assign the User Twitter username. And so on 🙂
PHP Snippet: Update User Meta After a Successful Order in WooCommerce
In this example, we’re saving the customer IP address into a user custom field. You can get other order data by checking https://www.businessbloomer.com/woocommerce-easily-get-order-info-total-items-etc-from-order-object/.
/**
* @snippet Update User Meta After a Successful Order - WooCommerce
* @how-to businessbloomer.com/woocommerce-customization
* @author Rodolfo Melogli, Business Bloomer
* @compatible WooCommerce 4.6
* @community https://businessbloomer.com/club/
*/
add_action( 'woocommerce_thankyou', 'bbloomer_checkout_save_user_meta' );
function bbloomer_checkout_save_user_meta( $order_id ) {
$order = wc_get_order( $order_id );
$user_id = $order->get_user_id();
if ( $order->get_customer_ip_address() ) {
update_user_meta( $user_id, 'latest_ip_address', $order->get_customer_ip_address() );
}
}
Thank you for the concept of this article. It may help me accomplish my goal.
I would like to create a snippet that updates a user meta field with the most recent products purchased on a woocommerce order as a basic list separated by commas. Is this possible? I think I know I’ll need the following.
‘meta_field_name’, $order->get_items()
But I don’t know how to make the list of items to appear in the ACF meta field (which is a text field).
Can you suggest what I’d need to do?
Hi Jared, first of all, I would not use “get_items” as you save an array of objects, where each object contains a lot of information. It would be easier to store product IDs only, so you could loop through “get_items” and get the IDs only. As per the actual functionality, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Hi, thanks for the great snippet.
A hopefully quick question:
I’m trying to associate a job listing created during the order process with the woocommerce user. The job listing id is in the order meta as _job_listing and I want to use your code above to link it to the user.
My one concern is that a user could have multiple job listings associated with their account. Will the code above replace existing ones or simply append this new job listing id to existing ones in the user meta?
Hi Paul, as long as I know you can pass an array as meta value, which means you can “get” the existing meta value and concatenate an additional array value to it. Hope this helps
Hi Rodolfo! I follow your blog for WooCommerce. It’s amazing your work.
Just update the code for the woo-commerce order. I use
Thank you!
Hi,
Im not a developer.
But how can i update simply the order_id in the user data? (Because it is now in the post meta i think).
Tx in advance!
Hey Ben – thanks so much for your comment! Yes, this is possible – but unfortunately this is custom work and I cannot provide a complementary solution here via the blog comments. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding! ~R
great with all your articles
can you pls tell me how to update a custom type after the order is complete.
i use:
o create a custom post type after user register, i want after order is complete to have:
can you pls help me? also min my code first name and last name is not working using woocomerce register (only with normal register) have any glue why?
thanks
Marius, thanks so much for your comment! Yes, this is possible – but unfortunately this is custom work and I cannot provide a complementary solution here via the blog comments. Thanks a lot for your understanding! ~R
Love your site Rodolfo!
I have used several of your code snippets with great success. One change I made with this one (see below) was prompted by a deprecated code warning from woocommerce regarding accessing user_ids. Thanks again for all your tireless work for helping use neophytes learn how to customize woocommerce.
Fantastic, thanks so much for your help 🙂