Change User Block Position, Remove Delete Account & Quantity Limitations

  1. Please clarify where you want to put the user block on the request page?

  2. Please try this PHP snippet

add_filter( 
	'hivepress/v1/templates/user_edit_settings_page', 
	function( $template ) {
		return hivepress()->helper->merge_trees(
			$template,
			[
				'blocks' => [
					'user_update_form' => [
						'footer' => [
							'form_actions' => [
								'blocks' => [
									'user_delete_link' => [
										'type' => 'content',
									],
								],
							],
						],
					],
				],
			]
		);
	
		return $blocks;
	},
	1000
);
  1. If you mean to set the maximum number of tags for listings then please check this topic Set a minimum and a maximum for tags - #2 by yevhen