Created
July 24, 2018 08:17
-
-
Save patrickposner/3e0ba803fc23cb4d9f504c401748160a 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
| // Bestellstatus nach Stripe->Sofortüberweisung direkt auf fertiggestellt | |
| add_action( 'woocommerce_thankyou', 'sofort_force_order_complete', 10, 1 ); | |
| function sofort_force_order_complete( $order_get_id ) { | |
| $order = new WC_Order($order_get_id); | |
| if($order->get_payment_method() == 'stripe_sofort') { | |
| $order->update_status('completed', 'order_note'); | |
| } | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment