WooCommerce: Fixing Fatal error Call to undefined function wc_get_order()
I developed a custom payment gateway plugin for a client, who wanted to add a similar method to “cod” (cash on delivery). FYI, he wanted to add a method called “card on delivery”. I simply duplicated the code, added the PHP to a file, made a plugin and gave him the plugin zip file. And everything was working great… until he did a test checkout.
The error that showed after placing an order
Fatal error: Call to undefined function wc_get_order() in /home/XXXXXXX/public_html/wp-content/plugins/woocommerce-gateway-carddelivery-plugin/woocommerce-gateway-carddelivery-plugin.php on line 201
The fix: wc_get_order() is only valid for WooCommerce 2.2+
It was very simple. The client was still using WooCommerce 2.1, where new orders are called differently. From WooCommerce 2.2, orders are created with wc_get_order() instead.
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.
10 thoughts on “WooCommerce: Fixing Fatal error Call to undefined function wc_get_order()”
Michael
I have same issue, but I the issue when I use the function wc_get_orders()
Its when I use it inside “my custom function” plugin
(which I think is just appending to the main functions php file)
How can I fix that?
Do I need to include the wc-order-functions.php file before calling wc_get_orders() or how do I fix it ?
require_once( dirname( __FILE__ ) . ‘/includes/wc-order-functions.php’ );
Hi Michael, thanks so much for your comment! Yes, this is possible – unfortunately this is custom work and I cannot provide a complementary solution here via the blog comments. Thanks a lot for your understanding! ~R
Thank you! This saved me who-knows-how-much time!
I was getting a slightly different Fatal Error:
Uncaught Error: Call to undefined method WC_Order_Refund::get_billing_first_name()
Hello JV, thanks so much for your comment! Yes, 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!
Minha página principal apresenta o seguinte erro:
Fatal error: Call to undefined function woocommerce_reset_loop() in /home2/tapetesc/public_html/wp-content/themes/mrtailor/inc/shortcodes/product-categories.php on line 116
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.
I have same issue, but I the issue when I use the function wc_get_orders()
Its when I use it inside “my custom function” plugin
(which I think is just appending to the main functions php file)
How can I fix that?
Do I need to include the wc-order-functions.php file before calling wc_get_orders() or how do I fix it ?
require_once( dirname( __FILE__ ) . ‘/includes/wc-order-functions.php’ );
Thank You 🙂
Hi Michael, thanks so much for your comment! Yes, this is possible – unfortunately this is custom work and I cannot provide a complementary solution here via the blog comments. Thanks a lot for your understanding! ~R
Thank you! This saved me who-knows-how-much time!
I was getting a slightly different Fatal Error:
Uncaught Error: Call to undefined method WC_Order_Refund::get_billing_first_name()
But this still did the trick!
Awesome!
I’m getting Error thrown: Call to undefined method WC_Order::get_billing_first_name() and can’t get it fixed. Any thoughts on this?
Hello JV, thanks so much for your comment! Yes, 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, could you guide me with this error:
Fred, thanks for your comment! I recommend to talk to the “ld-group-registration” plugin devs 🙂
Minha página principal apresenta o seguinte erro:
Fatal error: Call to undefined function woocommerce_reset_loop() in /home2/tapetesc/public_html/wp-content/themes/mrtailor/inc/shortcodes/product-categories.php on line 116
Como posso resolver esse problema?
Att,
Camila
Thanks for your message Camila. Did this error appear after you tried using my function?