How can I change
“Wanna try an alternative keyword search?”
to
“Would you like to try an alternative keyword search?”
I changed the wording in loop-not-found.php, but it didn’t fix it.
my exact php file includes this now:
<?php
if ( ! is_search() )
_e( "Sorry, but you are looking for something that isn't here. Would you like to try a search?", "graphene" );
else
_e( "Sorry, but no results were found for that keyword. Would you like to try an alternative keyword search?", "graphene" );
?>
Any other places it needs changing ?
Also, how do I do it permanently in a child theme?
Do I copy the entire loop-not-found.php into the child theme area ?
Thanks