Skip to content

Instantly share code, notes, and snippets.

@webtoffee-git
Created December 18, 2025 09:34
Show Gist options
  • Select an option

  • Save webtoffee-git/4891ac32aa812fa8bd2752834f5bc97f to your computer and use it in GitHub Desktop.

Select an option

Save webtoffee-git/4891ac32aa812fa8bd2752834f5bc97f to your computer and use it in GitHub Desktop.
Code to bulk download packing slip - By WebToffee
<?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