epl_property_sub_title_available_from_label to alter the Available from label
Adjust the Available from label with this filter.
All you need to do is add the following function to your theme functions.php file to change the Available from label.
// Adjust Easy Property Listings Available from label function my_epl_property_sub_title_available_from_label() { return 'Listing is Available'; } add_filter( 'epl_property_sub_title_available_from_label' , 'my_epl_property_sub_title_available_from_label' , 1 );