Search
 
SCRIPT & CODE EXAMPLE
 

PHP

auto complete order paid

add_action( 'woocommerce_payment_complete_order_status', 'wc_auto_complete_paid_order', 10, 3 );
function wc_auto_complete_paid_order( $status, $order_id, $order ) {
    return 'completed';
}
Comment

auto complete order paid1

add_action( 'woocommerce_thankyou', 'wc_auto_complete_paid_order', 20, 1 );
function wc_auto_complete_paid_order( $order_id ) {
    if ( ! $order_id )
        return;
    
    // Get an instance of the WC_Product object
    $order = wc_get_order( $order_id );
    
    // No updated status for orders delivered with Bank wire, Cash on delivery and Cheque payment methods.
    if ( in_array( $order->get_payment_method(), array( 'bacs', 'cod', 'cheque', '' ) ) ) {
        return;
    } 
    // For paid Orders with all others payment methods (paid order status "processing")
    elseif( $order->has_status('processing') ) {
        $order->update_status( 'completed' );
    }
}
Comment

auto complete order paid2

/**
 * AUTO COMPLETE PAID ORDERS IN WOOCOMMERCE
 */
add_action( 'woocommerce_thankyou', 'custom_woocommerce_auto_complete_paid_order', 10, 1 );
function custom_woocommerce_auto_complete_paid_order( $order_id ) {
    if ( ! $order_id )
    return;

    $order = wc_get_order( $order_id );

    // No updated status for orders delivered with Bank wire, Cash on delivery and Cheque payment methods.
    if ( ( 'bacs' == get_post_meta($order_id, '_payment_method', true) ) || ( 'cod' == get_post_meta($order_id, '_payment_method', true) ) || ( 'cheque' == get_post_meta($order_id, '_payment_method', true) ) ) {
        return;
    } 
    // For paid Orders with all others payment methods (with paid status "processing")
    elseif( $order->get_status()  === 'processing' ) {
        $order->update_status( 'completed' );
    }
}
Comment

auto complete order paid3

add_action( 'woocommerce_payment_complete', 'wc_auto_complete_paid_order', 20, 1 );
function wc_auto_complete_paid_order( $order_id ) {
    if ( ! $order_id )
        return;

    // Get an instance of the WC_Product object
    $order = wc_get_order( $order_id );

    // No updated status for orders delivered with Bank wire, Cash on delivery and Cheque payment methods.
    if ( in_array( $order->get_payment_method(), array( 'bacs', 'cod', 'cheque', '' ) ) ) {
        return;
    // Updated status to "completed" for paid Orders with all others payment methods
    } else {
        $order->update_status( 'completed' );
    }
}
Comment

auto complete order paid1

add_filter('woocommerce_order_item_needs_processing', '__return_false',999);
Comment

PREVIOUS NEXT
Code Example
Php :: firebase php curl 
Php :: -inurl:(htm/html/php/pls/txt) intitle:index.of "last modified" (mp4/wma/aac/avi) 
Php :: WP Admin Bar Dev Links 
Php :: __sleep and __wakeup 
Php :: sql update views +1 
Php :: to create html document you require a 
Php :: how to increase wp mailster attachment size 
Php :: model coomad laravel 
Php :: iterate over assets container statamic 
Php :: laravel gigapay resend payout notification 
Php :: woo can not change products perpage in shop page 
Php :: Parameters inside Laravel localized string 
Php :: Fehler beim Uploadtest der ausgewählten Datei. 
Php :: comparison operators in php 
Php :: DateTimeZone not found laravel 
Php :: php oops 
Php :: Enqueue WP scripts and styles from a single action hook. 
Php :: diferencias empty() e isset() 
Php :: php discord webhook sender 
Php :: If you wanted all questions that had all three of those tags, your query would look like: 
Php :: php git pull webhook 
Php :: cast_assoc 
Php :: fuzzy search in php with percentage 
Php :: verify that a valid login cookie was sent in order to do special things for that logged-in 
Php :: Collapse all codes in PHP Storm IntelliJ 
Php :: old codestar gallery 
Php :: echo alphabet links 
Php :: dropdown in crud application YII 
Php :: Stopping On First Validation Failure 
Php :: php print keys of array 
ADD CONTENT
Topic
Content
Source link
Name
3+1 =