//更改woo 購買後的預設訂單狀態 更改為保留
function QuadLayers_change_order_status( $order_id ) {
if ( ! $order_id ) {return;}
$order = wc_get_order( $order_id );
if( 'processing'== $order->get_status() ) {
$order->update_status( 'wc-on-hold' );
}
}
add_action('woocommerce_thankyou','QuadLayers_change_order_status');