Created
June 15, 2021 13:31
-
-
Save hedqvist/5b4f6d2c333b8bb6b938545d1d32cf58 to your computer and use it in GitHub Desktop.
PostNord - labelType
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
| <?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