Add Custom Text to the "No Listings" Page
<?php
/**
* Add Custom Text to the "No Listings" Page
*/
add_filter( 'wpsight_no_posts_text', 'custom_no_posts_text' );
function custom_no_posts_text($data) {
$data = $data.' This is my custom Text';
return $data;
}