You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Q: In the third-party plugin, how to use the custom order numbers instead of WooCommerce Order Number?
In the Custom Order Numbers Lite/PRO plugin, we maintain the original order ID created by WooCommerce in the database. This order ID is crucial for various core functions and is utilized by multiple plugins and themes.
To implement custom order numbers, kindly reach out to the support team of the third-party plugin that you are using. Request them to make the required adjustments in their codebase, specifically in the sections where the Order ID is retrieved. They should incorporate the below code for Custom Order Numbers instead of the existing code associated with the Order ID.
Here is the code they will need.
$custom_order_number = $order->get_order_number(); //where $order is an order object
The text was updated successfully, but these errors were encountered:
Q: In the third-party plugin, how to use the custom order numbers instead of WooCommerce Order Number?
In the Custom Order Numbers Lite/PRO plugin, we maintain the original order ID created by WooCommerce in the database. This order ID is crucial for various core functions and is utilized by multiple plugins and themes.
To implement custom order numbers, kindly reach out to the support team of the third-party plugin that you are using. Request them to make the required adjustments in their codebase, specifically in the sections where the Order ID is retrieved. They should incorporate the below code for Custom Order Numbers instead of the existing code associated with the Order ID.
Here is the code they will need.
$custom_order_number = $order->get_order_number(); //where $order is an order object
The text was updated successfully, but these errors were encountered: