Last active
August 29, 2015 14:21
-
-
Save amielucha/68b204432c375f63c231 to your computer and use it in GitHub Desktop.
WooCommerce - remove actions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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