Hi,
Thanks for the reply.
Ya, I know I can override the profile template to edit. Can you please tell exactly which hook is used to edit.
Thanks
No, the above link doesn’t work.
I got a solution from stack overflow.
add_action( 'woocommerce_thankyou', 'custom_woocommerce_auto_complete_order' );
function custom_woocommerce_auto_complete_order( $order_id ) {
global $woocommerce;
if ( !$order_id )
return;
$order = new WC_Order( $order_id );
$order->update_status( 'on-hold' );
}
—
Thanks
-
This reply was modified 7 years, 10 months ago by sujitkumar87.