Skip to content

Instantly share code, notes, and snippets.

@amielucha
Last active August 29, 2015 14:21
Show Gist options
  • Save amielucha/68b204432c375f63c231 to your computer and use it in GitHub Desktop.
Save amielucha/68b204432c375f63c231 to your computer and use it in GitHub Desktop.
WooCommerce - remove actions
// will not work in functions.php, use in plugins only
function woo_changes(){
//remove_action( 'woocommerce_checkout_order_review', 'woocommerce_order_review', 10 );
//add_action( 'woocommerce_checkout_after_customer_details', 'woocommerce_order_review', 10 );
}
add_action('plugins_loaded','woo_changes');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment