If you mean moving the Location field from the search bar to the search filters form please try this code snippet:
add_filter(
'hivepress/v1/models/listing/attributes',
function( $attributes ) {
if ( isset( $attributes['location'] ) ) {
$attributes['location'] = array_merge($attributes['location'], ['searchable' => false, 'filterable' => true]);
$attributes['latitude'] = array_merge($attributes['latitude'], ['searchable' => false, 'filterable' => true]);
$attributes['longitude'] = array_merge($attributes['longitude'], ['searchable' => false, 'filterable' => true]);
}
return $attributes;
},
1000
);