Skip to content

Instantly share code, notes, and snippets.

@hedqvist
Last active March 9, 2021 16:43
Show Gist options
  • Select an option

  • Save hedqvist/5dc1c72bb4ad389b282428dac8cc8690 to your computer and use it in GitHub Desktop.

Select an option

Save hedqvist/5dc1c72bb4ad389b282428dac8cc8690 to your computer and use it in GitHub Desktop.
Unifaun - DHL Addon
<?php
/**
* @snippet WooCommerce - Adds ADDON to Shipment
* @author Redlight Media AB / Christopher Hedqvist
* @compatible WooCommerce 4.2.0
*/
function redlight_unifaun_dhl_addon( $shipment, $order ) {
// Only AEX
if( 'AEX' === $shipment['service']['id'] ){
$shipment['service']['addons'][] = array(
'id' => 'NOT'
);
}
return $shipment;
}
add_filter('ac_wc_unifaun_shipment_data', 'redlight_unifaun_dhl_addon', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment