我已经安装了WooCommerce打印发票和包装,并且想要创建一个功能。 我希望添加一个功能,该功能可以在打印订单发票后自动将订单状态更改为处理。
我尝试更改此代码,但没有骰子:
add_action( 'wc_pip_process_orders_bulk_action', 'custom_woocommerce_auto_complete_order' );
function custom_woocommerce_auto_complete_order( $action_type ) {
global $woocommerce;
if ( !$action_type )
return;
$action_type = wc_pip_process_orders_bulk_action ( $action_type );
$action_type->update_status( 'processing' );
}