Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created May 19, 2015 16:15
Show Gist options
  • Save mikejolley/1fb2f3e527c8233dfce6 to your computer and use it in GitHub Desktop.
Save mikejolley/1fb2f3e527c8233dfce6 to your computer and use it in GitHub Desktop.
add_filter( 'woocommerce_hidden_order_itemmeta', 'hide_job_id_from_order_itemmeta' );
function hide_job_id_from_order_itemmeta( $hidden ) {
$hidden[] = '_job_id';
return $hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment