Custom Label for Property Detail
<?php
/**
* Custom Label for Property Detail
*/
add_filter('wpsight_search_form_details', 'custom_search_form_details');
function custom_search_form_details($search_details) {
$search_details['property-type']['label'] = __( 'haha', 'wpcasa' );
// Return filtrable array
return $search_details;
}