Skip to content

Instantly share code, notes, and snippets.

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 champsupertramp/88a6f69fc6089c93f30a9f36eeb39e77 to your computer and use it in GitHub Desktop.
Save champsupertramp/88a6f69fc6089c93f30a9f36eeb39e77 to your computer and use it in GitHub Desktop.
Ultimate Member - Disable nonce in registration form
<?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