Skip to content

Instantly share code, notes, and snippets.

@hedqvist
Last active February 25, 2021 11:33
Show Gist options
  • Save hedqvist/2aa1a2aec57b8500d9442517638c6260 to your computer and use it in GitHub Desktop.
Save hedqvist/2aa1a2aec57b8500d9442517638c6260 to your computer and use it in GitHub Desktop.
Unifaun - PostNord liggtid
<?php
/**
* @snippet WooCommerce - Adds ADDON to Shipment
* @author Redlight Media AB / Christopher Hedqvist
* @compatible WooCommerce 4.2.0
*/
function redlight_unifaun_postnord_addon( $shipment, $order ) {
// Only P19
if( 'P19' === $shipment['service']['id'] ){
$shipment['service']['addons'][] = array(
'id' => 'RETNEXT14'
);
}
return $shipment;
}
add_filter('ac_wc_unifaun_shipment_data', 'redlight_unifaun_postnord_addon', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment