Created
July 14, 2014 12:07
-
-
Save NiklasHogefjord/fd76f7e2d4f2e6a21e8f to your computer and use it in GitHub Desktop.
WooCommerce, DIBS Payment Gateway - Add the DIBS Transaction ID to order emails
This file contains 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 the DIBS Transaction ID to order emails | |
**/ | |
add_filter('woocommerce_email_order_meta_keys', 'dibs_woocommerce_email_order_meta_keys'); | |
function dibs_woocommerce_email_order_meta_keys( $keys ) { | |
$keys['DIBS Transaction ID'] = 'dibs_transaction_no'; | |
return $keys; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment