Change Text in "Page not found"

Hi,

I would like to change the text in the “Page not found” default page to read.

“Page Not Found” instead of “Oops”;
“Search for content below” instead of “You blew up the Internet.”

And remove the word “(bummer).” from the paragraph below.

Please see screenshot attached…

Thanks!

Hello @hnmcsweb,

Thanks for asking. :slight_smile:

Please add following Js code under X > Theme Options > JS

(function($){ 
	//this will change OOPS text
	$('.error404 .h-landmark span').text('Replace this');
	
	// this will change Change You blew up the Internet text
	$('.error404 .p-landmark-sub span').text('Replace This');
	
	// this will change the 404 description test
	$('.entry-404 .center-text').text('Replace This');
})(jQuery)

Please change Replace This with relevant texts.
Thanks.

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