Call empty cart when completing payment in PayPal

This commit is contained in:
Mike Jolley 2018-03-23 12:54:03 +00:00
parent 0f040f08c4
commit 0573232c62
1 changed files with 1 additions and 0 deletions

View File

@ -65,6 +65,7 @@ abstract class WC_Gateway_Paypal_Response {
protected function payment_complete( $order, $txn_id = '', $note = '' ) {
$order->add_order_note( $note );
$order->payment_complete( $txn_id );
WC()->cart->empty_cart();
}
/**