Skip to content

Instantly share code, notes, and snippets.

@johnmontfx
Last active January 27, 2016 03:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnmontfx/5696ae36959f94762789 to your computer and use it in GitHub Desktop.
Save johnmontfx/5696ae36959f94762789 to your computer and use it in GitHub Desktop.
plugins loaded
add_action( 'plugins_loaded', 'my_overrides');
function my_overrides() {
add_action( 'woocommerce_saved_order_items','my_function_one' );
add_action( 'woocommerce_checkout_order_processed', 'my_function_two' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment