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.

I simply substituted this:

$order = wc_get_order( $order_id );

with this:

$order = new WC_Order( $order_id );

Where to add custom code?

You should place custom PHP in functions.php and custom CSS in style.css of your child theme: where to place WooCommerce customization?

This code still works, unless you report otherwise. To exclude conflicts, temporarily switch to the Storefront theme, disable all plugins except WooCommerce, and test the snippet again: WooCommerce troubleshooting 101

Related content

  • WooCommerce Visual Hook Guide: Single Product Page
    Here’s a visual hook guide for the WooCommerce Single Product Page. This is part of my “Visual Hook Guide Series“, through which you can find WooCommerce hooks quickly and easily by seeing their actual locations (and you can copy/paste). If you like this guide and it’s helpful to you, let me know in the comments! […]
  • WooCommerce: Disable Variable Product Price Range $$$-$$$
    You may want to disable the WooCommerce variable product price range which usually looks like $100-$999 when variations have different prices (min $100 and max $999 in this case). With this snippet you will be able to hide the highest price, and add a “From: ” prefix in front of the minimum price. At the […]
  • WooCommerce: Hide Price & Add to Cart for Logged Out Users
    You may want to force users to login in order to see prices and add products to cart. That means you must hide add to cart buttons and prices on the Shop and Single Product pages when a user is logged out. All you need is pasting the following code in your functions.php (please note: […]
  • WooCommerce: Add Custom Field to Product Variations
    Adding and displaying custom fields on WooCommerce products is quite simple. For example, you can add a “RRP/MSRP” field to a product, or maybe use ACF and display its value on the single product page. Easy, yes. Unfortunately, the above only applies to “simple” products without variations (or the parent product if it’s a variable […]
  • WooCommerce: Disable Payment Gateway by Country
    You might want to disable PayPal for non-local customers or enable a specific gateway for only one country… Either way, this is a very common requirement for all of those who trade internationally. Here’s a simple snippet you can further customize to achieve your objective. Simply pick the payment gateway “slug” you want to disable/enable […]

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. Follow @rmelogli

10 thoughts on “WooCommerce: Fixing Fatal error Call to undefined function wc_get_order()

  1. 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 🙂

    1. 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

  2. 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!

    1. Awesome!

      1. 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?

        1. 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!

  3. Hi, could you guide me with this error:

     1=""to"" 2=""undefined"" 3=""function"" 4=""wcs_order_contains_renewal()"" 5=""in"" 6=""/home/xxxxx/domains/xxx.xx/public_html/onlinelearning/wp-content/plugins/ld-group-registration/modules/class-wdm-woocommerce.php"" 7=""on"" 8=""line"" 9=""137"" 10=""
    1. Fred, thanks for your comment! I recommend to talk to the “ld-group-registration” plugin devs 🙂

  4. 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

    1. Thanks for your message Camila. Did this error appear after you tried using my function?

Questions? Feedback? Customization? Leave your comment now!
_____

If you are writing code, please wrap it like so: [php]code_here[/php]. Failure to complying with this, as well as going off topic or not using the English language will result in comment disapproval. 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 the Business Bloomer Club to get quick WooCommerce support. Thank you!

Your email address will not be published. Required fields are marked *