Created
April 19, 2017 11:07
-
-
Save champsupertramp/88a6f69fc6089c93f30a9f36eeb39e77 to your computer and use it in GitHub Desktop.
Ultimate Member - Disable nonce in registration form
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 | |
add_filter("um_register_allow_nonce_verification","um_custom_disable_register_nonce",10,1); | |
function um_custom_disable_register_nonce( $disable ){ | |
return false; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment