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 :: Assignment By Reference 
Php ::  
Php :: concat ternary operator 
:: symfony server:start not working 
Php :: image_store 
Php :: Laravel model - CRUD only with records where one column = certain value 
Php :: Syntax error or access violation: 1072 Key column doesnt exist in table laravel migrate 
Php :: composer exceeded the timeout of 300 seconds. 
Php ::  
Php :: 0 
Php :: smarty shorthand if 
::  
Php ::  
Php :: wordpress disable php update required 
::  
Php :: undefined array key php 
Php :: filter data in wordpress 
Php :: php slim inspect request method 
Php :: How to create a contract with Solidity? 
Php :: http://www.endmemo.com/program/R/vector.php 
::  
:: how to call a function in model from a controller 
Php :: laravel return new tab 
Php :: wp varnish ip 
Php :: how to use php in laravel blade 
Php :: Laravel: Session message exist while click on browser back button 
Php :: laravel onclick all notification reads 
Php :: php how to split square bracket and normal sting in a word or sentence 
Php :: config in php 
Php :: php calculate variance 
ADD CONTENT
Topic
Content
Source link
Name
7+6 =