Skip to content

Instantly share code, notes, and snippets.

@WooForce
Last active April 8, 2016 00:24
Show Gist options
  • Save WooForce/2d61f1f5575783561f03ab2689bbd49c to your computer and use it in GitHub Desktop.
Save WooForce/2d61f1f5575783561f03ab2689bbd49c to your computer and use it in GitHub Desktop.
FedEx - Change Commodities details description.
add_filter('wf_fedex_request','wf_fedex_label_request_callback', 10, 2 );
function wf_fedex_label_request_callback($request,$order){
$custom_product_description = 'My Product Description';
$commodities = !empty( $request['RequestedShipment']['CustomsClearanceDetail']['Commodities'] ) ? $request['RequestedShipment']['CustomsClearanceDetail']['Commodities']: array() ;
foreach ($commodities as $product_id => $value) {
$request['RequestedShipment']['CustomsClearanceDetail']['Commodities'][$product_id]['Description'] = $custom_product_description;
}
return $request;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment