Join our new community forum for support & discussion

Join Now

Home Support General HivePress Mandatory name and last name fields in profile

Mandatory name and last name fields in profile

  • Author
    Posts
  • DianaLizarazo

    Hi!

    I am testing the platform as a normal user would use it and I realized that the field name, last name and profile information are optional. Could it be possible to change these and make them mandatory?

    Thanks!

    rosendo

    Hi Diana!

    Maybe you can try this filter if you are talking about the user profile update form.

    add_filter(
    	'hivepress/v1/forms/user_update',
    	function( $form ) {
    		$form['fields']['first_name']['required'] = true;
    		$form['fields']['last_name']['required'] = true;
    		return $form;
    	},
    	1000
    );

    Hope it helps.

    DianaLizarazo

    Thank you Rosendo 🙂

    You are so kind!

    ihor developer

    Thanks @rosendo

Viewing 4 posts - 1 through 4 (of 4 total)

New Reply

This forum has been archived and is no longer accepting new posts or replies. Please join our new community forum for support & discussion.