Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shameemreza/803e629ae2b85dcdfad59a1b32125257 to your computer and use it in GitHub Desktop.
Save shameemreza/803e629ae2b85dcdfad59a1b32125257 to your computer and use it in GitHub Desktop.
Autocomplete paid orders for specific payment gateway in WooCommerce.
add_filter( 'woocommerce_payment_complete_order_status', 'wc_auto_complete_paid_order', 10, 3 );
function wc_auto_complete_paid_order( $status, $order_id, $order ) {
if ( $order->get_payment_method() === 'stripe' ) {
$status = 'completed';
}
return $status;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment