Change search page text - results not found

Hi,

Is there a way that i can change the text on the search page when no results are found. All I want to do it take the word (bummer) out of the existing wording.

thanks guys.

Hi There,

Please try adding this custom code under functions.php file locates in your child theme:

function my_custom_strings($translated_text, $text, $domain) {
	$translated_text = str_replace("Nothing to Show Right Now", "Your text", $translated_text);
	$translated_text = str_replace("It appears whatever you were looking for is no longer here or perhaps wasn't here to begin with. You might want to try starting over from the homepage to see if you can find what you're after from there.", "Your text", $translated_text);
	return $translated_text;
}
add_filter('gettext', 'my_custom_strings', 100, 3);

Hope it helps :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.