epl_get_property_land_area_label Land is Filter
By default the land label displayed as:
Land is {value}
You can adjust the Land is label with the epl_get_property_land_area_label filter
function my_epl_get_property_land_area_label( $label ) { $label = 'Land Area:'; return $label; } add_filter( 'epl_get_property_land_area_label' , 'my_epl_get_property_land_area_label' );