Created
December 18, 2025 09:34
-
-
Save webtoffee-git/4891ac32aa812fa8bd2752834f5bc97f to your computer and use it in GitHub Desktop.
Code to bulk download packing slip - By WebToffee
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php //Do not copy this line of code | |
| add_filter('wt_print_bulk_actions', 'add_bulk_download_packinglist_buttons'); | |
| function add_bulk_download_packinglist_buttons($actions) { | |
| $actions['download_packinglist'] = __('Download Packing slip', 'print-invoices-packing-slip-labels-for-woocommerce'); | |
| return $actions; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment