How could i change order list column position?

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Best Multi Vendor Marketplace Plugin for WordPress Forums WCFM – Ultimate How could i change order list column position?

Viewing 4 reply threads
  • Author
    Posts
    • #27149
      MOHO
      Participant

      I want to exchange “date” & “status” position.

      About “status” only icon, could display status word
      such as processing, complete?
      and i could translate chinese zh_TW

      By Moho

    • #27182
      WCFM Forum
      Member

      Hi,

      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

    • #27241
      MOHO
      Participant

      1. How could i shipping address column?

      2. “About “status” only icon, could display status word” – this can be done.
      I need,thanks.

    • #27313
      WCFM Forum
      Member

      Hi,

      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

    • #27406
      MOHO
      Participant

      Thanks a lot! It work now.

Viewing 4 reply threads
  • The topic ‘How could i change order list column position?’ is closed to new replies.