Modify Search Form Labels
<?php
/**
* Modify Search Form Labels
*/
add_filter('wpsight_search_form_details', 'custom_search_form_details', 11);
function custom_search_form_details($search_details) {
$search_details['location']['label'] = __( 'Location', 'wpsight' );
return $search_details;
}