Skip to content

Instantly share code, notes, and snippets.

@hedqvist
Created June 15, 2021 13:31
Show Gist options
  • Select an option

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

Select an option

Save hedqvist/5b4f6d2c333b8bb6b938545d1d32cf58 to your computer and use it in GitHub Desktop.
PostNord - labelType
<?php
/**
* @snippet WooCommerce - Set labelType to Small when getting labels from PostNord
* @author Redlight Media AB / Christopher Hedqvist
* @compatible WooCommerce 5.2.0
*/
function redlight_postnord_labelType( $labelType, $order ) {
$labelType = 'small';
return $labelType;
}
add_filter('redlight_wcpns_get_label_labelType', 'redlight_postnord_labelType', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment