开发者 |
SkyVerge
maxrice tamarazuk chasewiseman nekojira beka.rice |
---|---|
更新时间 | 2023年9月5日 11:54 |
PHP版本: | 7.4 及以上 |
WordPress版本: | 6.3.1 |
No configuration needed! The plugin is so easy to use, there aren't even any settings. Activate it, and orders will automatically become sequential.If you have no orders in your store, your orders will begin counting from order number 1. If you have existing orders, the count will pick up from your highest order number. If you've placed test orders, you must trash and permanently delete them to begin ordering at "1" (trashed orders have to be counted in case they're restored, so they need to be gone completely). Support Details We do support our free plugins and extensions, but please understand that support for premium products takes priority. We typically check the forums every few days (usually with a maximum delay of one week). Sequential Order Numbers Pro If you like this plugin, but are looking for the ability to set the starting number, or to add a custom prefix/suffix to your order numbers (ie, you'd prefer something like WT101UK, WT102UK, etc) please consider our premium Sequential Order Numbers Pro for WooCommerce plugin, which is available in the WooCommerce Store. More Details
$order->id
when storing order data, reference: $order->get_order_number()
This is compatible with WooCommerce core by default, as the order number is typically equal to the order ID. However, this will also let you be compatible with plugins such as ours, as the order number can be filtered (which is what we do to make it sequential), so using order number is preferred.
Some other notes to help developers:
Get an order from order number
If you want to access the order based on the sequential order number, you can do so with a helper method:
$order_id = wc_sequential_order_numbers()->find_order_by_order_number( $order_number );
This will give you the order's ID (post ID), and you can get the order object from this.
Get the order number
If you have access to the order ID or order object, you can easily get the sequential order number based on WooCommerce core functions.
$order = wc_get_order( $order_id ); $order_number = $order->get_order_number();
The plugin doesn't require any :) When you activate it, it gets to work right away! Orders will automatically become sequential, starting from the most recent order number.
For full compatibility with extensions which alter the order number, such as Sequential Order Numbers, WooCommerce extensions should use $order->get_order_number();
rather than $order->id
when referencing the order number.
If your extension is not displaying the correct order number, you can try contacting the developers of your payment gateway to see if it's possible to make this tiny change. Using the order number instead is both compatible with WooCommerce core and our plugin, as without the order number being changed, it will be equal to the order ID.
This free version does not have that functionality, but the premium Sequential Order Numbers Pro for WooCommerce will allow you to choose any starting number that's higher than your most current order number.
If you want to begin numbering at "1", you must trash, then permanently delete all orders in your store so that there are no order numbers already being counted.
This free version does not have that functionality, but it's included in the premium Sequential Order Numbers Pro for WooCommerce.
is_ajax()
with wp_doing_ajax()