Last active
April 8, 2016 00:24
-
-
Save WooForce/2d61f1f5575783561f03ab2689bbd49c to your computer and use it in GitHub Desktop.
FedEx - Change Commodities details description.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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