From b914b07b931e328875d3a8309501f4c24ca989a5 Mon Sep 17 00:00:00 2001 From: Chuck Scott Date: Fri, 16 Jun 2017 15:52:09 -0400 Subject: [PATCH] Added Gift Message to PDF invoice printouts --- functions.php | 13 +++++++++++++ style.css | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/functions.php b/functions.php index c3177b9..2392978 100755 --- a/functions.php +++ b/functions.php @@ -196,6 +196,19 @@ function tm_added_checkout_fields_email( $keys ) { return $keys; } +// Add Gift Message to PDF Invoice printout +add_action( 'wpo_wcpdf_after_order_details', 'woocommerce_invoice_gift_message', 10, 2 ); +function woocommerce_invoice_gift_message ($template_type, $order) { + global $wpo_wcpdf; + if ($template_type == 'invoice') { + ?> +
+ custom_field('Gift Message', "Gift Message:
"); ?> +
+