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') {
+ ?>
+ <div class="custom-text">
+ <?php $wpo_wcpdf->custom_field('Gift Message', "Gift Message:<br>"); ?>
+ </div>
+ <?php
+ }
+}
+
// Add custom fields to order printouts
function add_custom_fields_to_order_printout( $fields, $order ) {
$new_fields = array();