Location blank in Complete Profile page

Hi, in Complete Profile page, the location blank is between First Name and Last Name blank. Is it possible for the location blank to be below the Last name blank?

Please try this PHP snippet

add_filter(
	'hivepress/v1/forms/vendor_update',
	function( $form ) {
		if(isset($form['fields']['location'])){
			$form['fields']['location']['_order'] = 35;	
		}
		return $form;
	},
	1000
);

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.