Increasing geolocation radius

Please try this PHP snippet

add_filter( 
	'hivepress/v1/forms/listing_filter', 
	function($form){
		if(isset($form['fields']['_radius'])){
			$form['fields']['_radius']['max_value'] = 1000;
		}
		
		return $form;
	},
	1000 
);