Created
June 16, 2016 13:06
-
-
Save vanbo/aca0e416d27ee4d535b02956c61ed008 to your computer and use it in GitHub Desktop.
Linnworks Discount Item SKU
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( 'wc_linnworks_orders_discount_sku_name', 'linnworks_change_discount_item_sku' ); | |
| function linnworks_change_discount_item_sku($sku) { | |
| // Change the SKU value by returning a new value | |
| return 'NEW-SKU-HERE'; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment