Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Ultimate › How could change original order number as my custom order number?
Tagged: custom order number
- This topic has 12 replies, 2 voices, and was last updated 6 years, 6 months ago by
WCFM Forum.
- AuthorPosts
- July 29, 2018 at 1:34 pm #27146
MOHO
ParticipantI use WooCommerce Sequential Order Numbers Pro plugin to set my custom order number.
But i see original order number at order list “/orders/”, and not work my set.
How could it change as my custom order number?
By Moho
- July 29, 2018 at 8:29 pm #27175
WCFM Forum
MemberHi,
Which custom order no plugin you are using ?
Thank You
- July 29, 2018 at 8:31 pm #27176
WCFM Forum
MemberSorry, you already mentioned that in screenshot.
- July 29, 2018 at 8:34 pm #27177
WCFM Forum
MemberWe will add this compatibility in Vendor’s Orders list as well.
Thank You
- July 30, 2018 at 7:32 am #27238
MOHO
Participantyes i use WooCommerce Sequential Order Numbers Pro plugin
https://woocommerce.com/products/sequential-order-numbers-pro/Thanks.
- July 31, 2018 at 6:37 am #27310
WCFM Forum
MemberThanks, we will change all order number display according to this in next update.
- August 9, 2018 at 2:01 am #27956
MOHO
ParticipantIt didn’t update in your new verison.
- August 9, 2018 at 8:10 am #27980
- August 9, 2018 at 4:12 pm #28062
WCFM Forum
MemberHi,
Are you using WCFM 4.2.4?
If not, please update and take a look.
Thank You
- August 9, 2018 at 4:40 pm #28079
MOHO
Participantyes i use WCFM 4.2.4
you could use mohotest22 see my plugin.only the order number of vendor order list not work custom order number.
- August 9, 2018 at 5:02 pm #28088
WCFM Forum
MemberHi,
Kindly add this code to your site –
function wcfm_order_label_custom_display( $order_display_label, $order_id, $product_id, $order, $username ) { $the_order = wc_get_order($order_id); $order_display_label = '<a href="' . get_wcfm_view_order_url($order_id) . '" class="wcfm_order_title">#' . esc_attr( $the_order->get_order_number() ) . '</a>' . ' ' . __( 'by', 'wc-frontend-manager' ) . ' ' . $username; return $order_display_label; } add_filter( 'wcfm_order_label_display', 'wcfm_order_label_custom_display', 50, 5 );
Thank You
- August 9, 2018 at 5:06 pm #28090
MOHO
Participantthanks it work now!
please close it.
- August 9, 2018 at 5:11 pm #28094
WCFM Forum
MemberGreat 🙂
- AuthorPosts
- The topic ‘How could change original order number as my custom order number?’ is closed to new replies.