Hi @hypostatic,
Where is your shipping method situated?
Following this guide for the free version of the plugin:
https://docs.wpovernight.com/woocommerce-pdf-invoices-packing-slips/displaying-order-notes/#with-a-template-action-hook
…you’d do it with the last code snippet, but with this modification:
add_action( 'wpo_wcpdf_after_order_data', 'wpo_wcpdf_order_notes', 10, 2 );
function wpo_wcpdf_order_notes ($template_type, $order) {
if ($template_type == 'packing-slip') {
$document = wcpdf_get_document( $template_type, $order );
$document->order_notes();
}
}
If you haven’t used hooks before, check this guide out: https://docs.wpovernight.com/general/how-to-use-filters/
The Premium Templates extension eliminates the need for code, as you’d use a Custom Block from the Customizer that this extension gives you access to, like this:

With this you can change the position with a few clicks. ??
-
This reply was modified 3 years, 7 months ago by
Darren Peyou. Reason: additional info