Skip to content

Instantly share code, notes, and snippets.

@xlplugins
Created June 10, 2025 13:19
Show Gist options
  • Save xlplugins/3bf5ce725749d331fc18791f0e5422bc to your computer and use it in GitHub Desktop.
Save xlplugins/3bf5ce725749d331fc18791f0e5422bc to your computer and use it in GitHub Desktop.
Autocomplete Woo order
add_filter( 'woocommerce_payment_complete_order_status', 'wc_auto_complete_paid_order', 10, 3 );
function wc_auto_complete_paid_order( $status, $order_id, $order ) {
return 'completed';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment