Skip to content

Instantly share code, notes, and snippets.

@alokstha1
Last active December 20, 2023 01:25
Show Gist options
  • Save alokstha1/ff168d58c6416b7e5ba8057d5a7b881b to your computer and use it in GitHub Desktop.
Save alokstha1/ff168d58c6416b7e5ba8057d5a7b881b to your computer and use it in GitHub Desktop.
Woocommerce hook before checkout page submit and after order created
<?php
//triggers before checkout form is submited but order will be created.
add_action( 'woocommerce_checkout_update_order_meta', 'cpm_woocommerce_checkout_update', 10, 2 );
function cpm_woocommerce_checkout_update($order_id, $data) {
/*write ur code*/
}
@sakawsar
Copy link

Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment