Skip to content

Instantly share code, notes, and snippets.

@Musilda
Created October 24, 2020 09:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Musilda/6155182f7311e5d5e32c94a3429d1921 to your computer and use it in GitHub Desktop.
Save Musilda/6155182f7311e5d5e32c94a3429d1921 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'wc_order_is_editable', 'musilda_allow_edit_order' );
function musilda_allow_edit_order( $editable, $statuses, $order ){
if ( 'completed' === $order->get_status() ) {
$editable = true;
}
return $editable;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment