Skip to content

Instantly share code, notes, and snippets.

@NickGreen
Last active December 11, 2019 22:58
Show Gist options
  • Select an option

  • Save NickGreen/e0509a6d7e178844ee1f35ab9cadd612 to your computer and use it in GitHub Desktop.

Select an option

Save NickGreen/e0509a6d7e178844ee1f35ab9cadd612 to your computer and use it in GitHub Desktop.
Allow all orders to be edited
<?php
add_filter( 'wc_order_is_editable', 'wc_make_all_orders_editable', 12, 2 );
function wc_make_all_orders_editable( $is_editable, $order ) {
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment