This file contains 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 | |
// Add a note to the order. Put return code here if needed. | |
$order->add_order_note( __('Payment completed', 'woocommerce') ); | |
// Mark the order as complete | |
$order->payment_complete(); | |
// Empty the cart | |
$woocommerce->cart->empty_cart(); |