Hi Ewout,
I created the extension myself, just check whether I can create it. Everything works fine, excepts that de packing slip PDF is empty. Here’s my plugin:
https://www.handschoenengroothandel.nl/wp-content/uploads/2014/10/dbp-email-packing-slips.zip
When I output the PDF straight from WooCommerce_PDF_Invoices_Export it does work.
Line 160/161, does not work with my extension:
$pdf = $this->generate_pdf( $template_type, $order_ids );
return $pdf->output();
For debugging reasons I checked whether the data is okay there by doing the following:
$pdf = $this->generate_pdf( $template_type, $order_ids );
$pdf->stream('packing-slip.pdf');
//return $pdf->output();
And the whole packing slip is okay.
Sven