Skip to content

Instantly share code, notes, and snippets.

@bryceadams
Last active August 29, 2015 14:16
Show Gist options
  • Save bryceadams/85e71de18c9326b224e7 to your computer and use it in GitHub Desktop.
Save bryceadams/85e71de18c9326b224e7 to your computer and use it in GitHub Desktop.
add_filter( 'wc_order_is_editable', 'wcs_custom_order_status_edit', 10, 1 );
function wcs_custom_order_status_edit( $order ) {
$edit = ( in_array( $order->get_status(), array( 'pending', 'on-hold', 'auto-draft', 'quote' ) ) ? true : false;
return $edit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment