Template Sub Title Filter: Property Features
Using the following filter you can alter the default sub title Property Features to be anything you want with the following filter.
epl_property_sub_title_property_features
// Rename Property Features title. function my_epl_property_sub_title_property_features() { $label = 'My Custom Property Features Sub Title'; return $label; } add_filter( 'epl_property_sub_title_property_features' , 'my_epl_property_sub_title_property_features' );