Iโm guessing someone in Texas had something to do with the word โHowdyโ being the welcome prefix in WordPress. Itโs easy enough to change. Add the function below to your child theme functions.php file.
/* replacing Howdy with Hello */ function howdy_message($translated_text, $text, $domain) { $new_message = str_replace(โHowdyโ, โHelloโ, $text); return $new_message; } add_filter(โgettextโ, โhowdy_messageโ, 10, 3);