Skip to content

Instantly share code, notes, and snippets.

@shadimanna
Created February 1, 2022 14:11
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 shadimanna/d6514f02f934adbd6b9c3c46fe64422d to your computer and use it in GitHub Desktop.
Save shadimanna/d6514f02f934adbd6b9c3c46fe64422d to your computer and use it in GitHub Desktop.
add_filter('pr_shipping_dhl_label_args', 'modify_item_sku', 10, 2);
function modify_item_sku($args, $order_id) {
if( isset( $args['items'] ) ) {
foreach ($args['items'] as $item_key => $item_value) {
$item_value['item_description'] = "ENTER THE DESCRIPTION YOU WANT";
}
}
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment