Skip to content

Instantly share code, notes, and snippets.

@woogist
Created May 14, 2015 07:17
Show Gist options
  • Save woogist/80947f9ed4437ed8c114 to your computer and use it in GitHub Desktop.
Save woogist/80947f9ed4437ed8c114 to your computer and use it in GitHub Desktop.
add_filter( 'wc_order_is_editable', 'wc_make_processing_orders_editable' );
function wc_make_processing_orders_editable( $statuses ) {
if ( ! in_array( 'processing', $statuses ) ) {
array_push( $statuses, 'processing' );
}
return $statuses;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment