Skip to content
Advertisement

Dynamic custom order numbers based on payment method

I have the following code in my functions.php file:

JavaScript

The code works but I want it to permanently save the new order number. It should permanently make CHEXXXX (ex. CHE5783) the order number in the database if the user checked out using check payments. Right now this code only makes it temporary. It does not need to update previous order numbers, only new orders.

Advertisement

Answer

As the method WC_Order set_order_number() doesn’t exist, we will add a custom field (custom meta data) when an order is placed (on order creation). Then we will get that order custom meta data in woocommerce_order_number filter hook.

The code:

JavaScript

Code goes in functions.php file of your active child theme (or active theme). Tested and work.


Now if you want to be able to edit the order number on admin order pages, use additionally the following code:

JavaScript

Code goes in functions.php file of your active child theme (or active theme). Tested and work.

enter image description here

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement