Skip to content

Instantly share code, notes, and snippets.

@Acephalia
Last active January 22, 2025 21:41
Show Gist options
  • Save Acephalia/873f1a6c13e842a8c62aa73a1b976231 to your computer and use it in GitHub Desktop.
Save Acephalia/873f1a6c13e842a8c62aa73a1b976231 to your computer and use it in GitHub Desktop.
Auto Complete Woocommerce Virtual Orders
// Auto-complete virtual orders if payment is completed by u/acephaliax
function auto_complete_virtual_orders($order_id) {
if (!$order_id) {
return;
}
// Get the order object
$order = wc_get_order($order_id);
// Check if the order contains virtual products
$contains_virtual = false;
foreach ($order->get_items() as $item) {
$product = $item->get_product();
if ($product && $product->is_virtual()) {
$contains_virtual = true;
break;
}
}
// Check if the payment is completed
$payment_completed = $order->is_paid();
// If the order contains virtual products and the payment is completed, auto-complete it
if ($contains_virtual && $payment_completed) {
$order->update_status('completed');
}
}
add_action('woocommerce_order_status_changed', 'auto_complete_virtual_orders', 10, 3);
@dax702
Copy link

dax702 commented May 7, 2024

Hello, did you write this snippet? Are you available for modifying it? If so, please email me dax702 at gmail

@TheDanHealy
Copy link

Thanks for this. I made a slight update which only executes this if all items in the order are virtual.

// Auto-complete virtual orders if payment is completed by u/acephaliax
function auto_complete_virtual_orders($order_id) {
    if (!$order_id) {
        return;
    }

    // Get the order object
    $order = wc_get_order($order_id);

    // If any products are not virtual, exit this function
    foreach ($order->get_items() as $item) {
        $product = $item->get_product();
        if ($product && !$product->is_virtual()) {
            return;
        }
    }

    // If you've made it this far, there are only virtual products in your order.
    // If the payment is completed too, auto-complete the order
    if ( $order->is_paid() ) {
        $order->update_status('completed');
    }
}
add_action('woocommerce_order_status_changed', 'auto_complete_virtual_orders', 10, 3);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment