我用以下代码创建了新的WooCommerce状态:“已发货”:
/***********************************************
************************************************
************ Add WooCommerce Status ************
************************************************
***********************************************/
function register_shipped_status() {
register_post_status( 'wc-shipped', array(
'label' => 'Shipped',
'public' => true,
'exclude_from_search' => false,
'show_in_admin_all_list' => true,
'show_in_admin_status_list' => true,
'label_count' => _n_noop( 'Versendet <span class="count">(%s)</span>', 'Versendet <span class="count">(%s) </span>' )
) );
}
add_action( 'init', 'register_shipped_status' );
// Add to list of WC Order statuses
function add_shipped_to_order_statuses( $order_statuses ) {
$new_order_statuses = array();
// add new order status after processing
foreach ( $order_statuses as $key => $status ) {
$new_order_statuses[ $key ] = $status;
if ( 'wc-processing' === $key ) {
$new_order_statuses['wc-shipped'] = 'Versendet';
}
}
return $new_order_statuses;
}
add_filter( 'wc_order_statuses', 'add_shipped_to_order_statuses' );
效果很好。我只有一个问题:如果要编辑订单,则选择新的订单状态是不可能的。
我需要编辑WooCommerce订单,例如“待定”或“保留”的订单。我该如何实现?
我已经尝试将'public'=>更改为false,但是没有用。 Google搜索了很多,但发现只有相同问题的人却没有解决方案。
任何帮助表示赞赏。