Skip to content

Instantly share code, notes, and snippets.

@kreamweb
Created February 6, 2020 09:56
Show Gist options
  • Save kreamweb/1686f841d86792eebb3f6c09ccb74bbc to your computer and use it in GitHub Desktop.
Save kreamweb/1686f841d86792eebb3f6c09ccb74bbc to your computer and use it in GitHub Desktop.
<?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