Hi @simonbak
Two steps:
1. woocommerce-delivery-notes.php
Add this code and replace my_custom_field with your custom field:
if ( !function_exists( 'wcdn_my_custom_field' ) ) {
function wcdn_my_custom_field() {
global $wcdn;
echo $wcdn->print->get_order()->my_custom_field;
}
}
2. templates\print\print-delivery-note.php
Add this code wherever you want it to appear in the page and replace my_custom_field with your custom field::
<?php wcdn_my_custom_field(); ?>
Hope it helps!
Rafael