Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Yame-/5d946aeb7df6caf8e73d to your computer and use it in GitHub Desktop.
Save Yame-/5d946aeb7df6caf8e73d to your computer and use it in GitHub Desktop.
<?php
function send_sms_order_not_complete($orderid){
// Our order
$order = new WC_Order($orderid);
// When after 10min our order hasn't got the completed status...
if( $order->get_status() != 'completed' ){
// We send out a message through either a notification or SMS api.
}
}
add_action( 'send_sms_if_order_failed', 'send_sms_order_not_complete', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment