Once a customer places an order, you might want to know if such order contains a given product ID. you can use this for tracking purposes, redirect to a custom thank you page or run your custom functions.
Either way, checking this is quite simple thanks to the “woocommerce_thankyou” hook which runs on the order received page. Enjoy!
The default Thank You page in WooCommerce
PHP Snippet: Check if Order Contains Product ID
/**
* @snippet WooCommerce: Check if Product ID is in the Order
* @how-to Get CustomizeWoo.com FREE
* @author Rodolfo Melogli
* @compatible WooCommerce 3.8
* @donate $9 https://businessbloomer.com/bloomer-armada/
*/
add_action( 'woocommerce_thankyou', 'bbloomer_check_order_product_id' );
function bbloomer_check_order_product_id( $order_id ){
$order = wc_get_order( $order_id );
$items = $order->get_items();
foreach ( $items as $item_id => $item ) {
$product_id = $item->get_variation_id() ? $item->get_variation_id() : $item->get_product_id();
if ( $product_id === XYZ ) {
// do something
}
}
}
WooCommerce: Get Customer Second Last Order There is a native, handy way to get a WooCommerce customer’s last order: wc_get_customer_last_order( $customer_id ) This time, I want...
Please let me know in the comments if everything went as expected. I would be happy to revise the snippet if you report otherwise (please provide screenshots). I have tested this code with Storefront theme, the WooCommerce version listed above and a WordPress-friendly hosting.
If you think this code saved you time & money, feel free to join 17,000+ WooCommerce Weekly subscribers for blog post updates and 250+ Business Bloomer supporters for 365 days of WooCommerce benefits. Thank you in advance!
Need Help with WooCommerce?
Check out these free video tutorials. You can learn how to customize WooCommerce without unnecessary plugins, how to properly configure the WooCommerce plugin settings and even how to master WooCommerce troubleshooting in case of a bug!
Rodolfo Melogli
Business Bloomer Founder
Author, WooCommerce expert and WordCamp speaker, Rodolfo has worked as an independent WooCommerce freelancer since 2011. His goal is to help entrepreneurs and developers overcome their WooCommerce nightmares. Rodolfo loves travelling, chasing tennis & soccer balls and, of course, wood fired oven pizza.
If I wanted to check if a certain ordered item in an order has a certain shipping class, and I want a notice to display a notice in the order processing email should that item be present – how would I adjust this code to achieve that?
Hey Ryan! In a previous blog, I showed how to loop through the cart to look for shipping classes (just do a search on Business Bloomer for “shipping class” and you’ll find it). The order is slightly different, but you can learn the basics from that article anyway 🙂
Your video images are pointing to your staging site, I would do a search and replace on any of those so they don’t make a staging authentication box appear.
Dear Steven, thank you so much for spotting that issue! I’m having quite a few issues with the staging right now, but thankfully this has now been sorted. Can you please try again and report back? I really appreciate your help! Cheers, R
Questions? Feedback? Support? Leave your Comment Now! _____
If you are writing code, please wrap it between shortcodes: [php]code_here[/php]. Failure to complying with this (as well as going off topic, not writing in English, etc.) will result in comment deletion. You should expect a reply in about 2 weeks - this is a popular blog but I need to get paid work done first. Please consider joining BloomerArmada to get blog comment reply priority, ask me 1-to-1 WooCommerce questions and enjoy many more perks. Thank you :)
With 100,000 (and growing) monthly organic sessions, Business Bloomer is the most consistent, most active and most complete WooCommerce development/customization blog.
Of course this website itself uses the WooCommerce plugin, the Storefront theme and runs on a WooCommerce-friendly hosting.
You know, you are the best 😉
Cheers Neil 🙂
Hi Rodolfo,
If I wanted to check if a certain ordered item in an order has a certain shipping class, and I want a notice to display a notice in the order processing email should that item be present – how would I adjust this code to achieve that?
Thanks,
Ryan
Hey Ryan! In a previous blog, I showed how to loop through the cart to look for shipping classes (just do a search on Business Bloomer for “shipping class” and you’ll find it). The order is slightly different, but you can learn the basics from that article anyway 🙂
not working for product id now . i think woocommerce chnages its structure
Hey Ranjit thanks for your comment! I don’t think they have changed it – can you try one more time please?
Your video images are pointing to your staging site, I would do a search and replace on any of those so they don’t make a staging authentication box appear.
Dear Steven, thank you so much for spotting that issue! I’m having quite a few issues with the staging right now, but thankfully this has now been sorted. Can you please try again and report back? I really appreciate your help! Cheers, R
Is there a way to do this with the product category instead of ID? I’ve been searching for a solution with no luck.
Hello Tia, thanks so much for your comment! Answer: there is always a way 🙂
Take a look at this guide https://businessbloomer.com/woocommerce-conditional-logic-ultimate-php-guide/ and try to see if there is a conditional rule you can apply to the products if they belong to a given category slug 🙂
Let me know