Best Multi Vendor Marketplace Plugin for WordPress › Forums › WCFM – Ultimate › How could i change order list column position?
Tagged: order list column position
- This topic has 4 replies, 2 voices, and was last updated 6 years, 10 months ago by
MOHO.
- AuthorPosts
- July 29, 2018 at 1:39 pm #27149
MOHO
ParticipantI want to exchange “date” & “status” position.
About “status” only icon, could display status word
such as processing, complete?
and i could translate chinese zh_TWBy Moho
- July 29, 2018 at 8:49 pm #27182
WCFM Forum
MemberHi,
Column position change is not possible from outside, then plugin core needs to be edited.
“About “status” only icon, could display status word” – this can be done.
Thank You
- July 30, 2018 at 8:03 am #27241
MOHO
Participant1. How could i shipping address column?
2. “About “status” only icon, could display status word” – this can be done.
I need,thanks. - July 31, 2018 at 6:47 am #27313
WCFM Forum
MemberHi,
1. Do you want to hide “Shipping Address” column? Please use Screen Manager, check here – https://wclovers.com/knowledgebase/wcfm-orders-dashboard/
2. Kindly add this code to your site –
function wcfm_order_status_custom_display( $display_label, $order ) { if( $order && is_object( $order ) ) { $display_label = wc_get_order_status_name( $order->get_status() ); } return $display_label; } add_filter( 'wcfm_order_status_display', 'wcfm_order_status_custom_display', 50, 2 );
Thank You
- August 1, 2018 at 12:26 pm #27406
MOHO
ParticipantThanks a lot! It work now.
- AuthorPosts
- The topic ‘How could i change order list column position?’ is closed to new replies.