Created
February 6, 2020 09:56
-
-
Save kreamweb/1686f841d86792eebb3f6c09ccb74bbc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php if ( ! function_exists( 'yith_pos_customization_order_status_to_complete' ) ) { | |
add_filter( 'woocommerce_payment_complete_order_status', 'yith_pos_customization_order_status_to_complete', 10, 3 ); | |
function yith_pos_customization_order_status_to_complete( $status, $order_id, $order ) { | |
if ( absint( $order->get_meta( '_yith_pos_order' ) ) ) { | |
$status = 'completed'; | |
} | |
return $status; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment