Created
July 22, 2015 13:39
-
-
Save Yame-/5d946aeb7df6caf8e73d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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