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, 3 months ago by WCFM Forum.
- AuthorPosts
- July 29, 2018 at 1:34 pm #27146MOHOParticipant
I 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 #27175WCFM ForumMember
Hi,
Which custom order no plugin you are using ?
Thank You
- July 29, 2018 at 8:31 pm #27176WCFM ForumMember
Sorry, you already mentioned that in screenshot.
- July 29, 2018 at 8:34 pm #27177WCFM ForumMember
We will add this compatibility in Vendor’s Orders list as well.
Thank You
- July 30, 2018 at 7:32 am #27238MOHOParticipant
yes i use WooCommerce Sequential Order Numbers Pro plugin
https://woocommerce.com/products/sequential-order-numbers-pro/Thanks.
- July 31, 2018 at 6:37 am #27310WCFM ForumMember
Thanks, we will change all order number display according to this in next update.
- August 9, 2018 at 2:01 am #27956MOHOParticipant
It didn’t update in your new verison.
- August 9, 2018 at 8:10 am #27980
- August 9, 2018 at 4:12 pm #28062WCFM ForumMember
Hi,
Are you using WCFM 4.2.4?
If not, please update and take a look.
Thank You
- August 9, 2018 at 4:40 pm #28079MOHOParticipant
yes 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 #28088WCFM ForumMember
Hi,
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 #28090MOHOParticipant
thanks it work now!
please close it.
- August 9, 2018 at 5:11 pm #28094WCFM ForumMember
Great 🙂
- AuthorPosts
- The topic ‘How could change original order number as my custom order number?’ is closed to new replies.