Created
October 23, 2017 11:19
-
-
Save ahmedeshaan/3907288f916c8bbe0682e848a5167c3d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?php | |
function remove_woocommerce_process_registration() { | |
remove_action('init', 'woocommerce_process_registration'); | |
} | |
add_action('init','remove_woocommerce_process_registration'); | |
add_action( 'init', 'my_process_registration' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment