Search Results Page Title Label

Since Easy Property Listings 3.0 the archive title for the listing results page have been re-written into a single action hook and used in the  archive-listing.php template file.

 <?php do_action( 'epl_the_archive_title' ); ?>

This function that outputs the title to this hook is:

epl_archive_title_callback

Search Result Title Label Filter

This function contains the search title label filter:

epl_archive_title_default

Example function to modify the title:

<?php
function my_epl_archive_title_default( $label ) {
	$label = 'My Search Title';
	return $label;
}
add_filter( 'epl_archive_title_default' , 'my_epl_archive_title_default' );

Using these filters you can modify the labels.