Skip to content

Instantly share code, notes, and snippets.

@hivepress
Created April 26, 2022 16:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hivepress/95eee09d50aaf41e574d2c269d477ef0 to your computer and use it in GitHub Desktop.
Save hivepress/95eee09d50aaf41e574d2c269d477ef0 to your computer and use it in GitHub Desktop.
Make first and last name fields required for users #hivepress #users
<?php
add_filter(
'hivepress/v1/forms/user_update',
function( $form ) {
$form['fields']['first_name']['required'] = true;
$form['fields']['last_name']['required'] = true;
return $form;
},
1000
);
@hivepress
Copy link
Author

Please try using our official support forum https://community.hivepress.io/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment