How to attach the packing slip to a specific email type?
Add below filter to your (child) themes functions.php in order to attach the packing slip to a specific email type. Below example will add the packing slip to the New Order email. function attach_packing_slip_to_email( $attachments, $status, $order ) { // only attach to emails with WC_Order object. if ( ! $order instanceof WC_Order ) { Read more about How to attach the packing slip to a specific email type?[…]