Hi Matt,
Apologies for the late reply, I was on a short holiday.
You can add page numbers with a small code snippet:
add_action( 'wpo_wcpdf_before_order_details', 'wpo_wcpdf_page_numbers', 10, 2 );
function wpo_wcpdf_page_numbers ($template_type, $order) {
?><div style="position:fixed; top: -5mm; text-align: right;">Page {{PAGE_NUM}}/{{PAGE_COUNT}}</div><?php
}
as you can see, you can have the page number and the total page count, it’s in this part of the snippet:
Page {{PAGE_NUM}}/{{PAGE_COUNT}}
This code goes into your child theme functions (functions.php) Read this if you haven’t worked with actions or filters before: How to use filters.
Note that this doesn’t work for bulk exports, as it will keep numbering.
Hope that helps!
Ewout