Skip to content

Instantly share code, notes, and snippets.

View robindevitt's full-sized avatar

Robin Devitt robindevitt

View GitHub Profile
@robindevitt
robindevitt / woocommerce-order-complete-by-product-id.php
Last active February 28, 2020 14:27
Auto Complete WooCommerce orders when the order contains a specific product ID.
/**
* Auto Complete WooCommerce orders when the order contains a specific product ID.
*/
add_action( 'woocommerce_thankyou', 'custom_woocommerce_auto_complete_order' );
function custom_woocommerce_auto_complete_order( $order_id ) {
if ( ! $order_id ) {
return;
}