Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save webdados/9da3ea4cf7732bfffa9a3f97e107bf94 to your computer and use it in GitHub Desktop.
Save webdados/9da3ea4cf7732bfffa9a3f97e107bf94 to your computer and use it in GitHub Desktop.
Add possible statuses to InvoiceXpress for WooCommerce automatic invoicing
<?php
add_filter( 'invoicexpress_woocommerce_automatic_invoice_possible_status', function( $statuses ) {
$statuses[] = 'wc-picking';
$statuses[] = 'wc-another-one-bites-the-dust';
return $statuses;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment