Require search Criteria - How to change from warning to info?

in 2026 is there anyway to change the popup top right from warning to info?

Warning

Please enter search criteria

Simply put this following code in Page_Load server event of List Page:

if ($this->SearchWhere == "0=101") {
    $this->language->setPhrase("EnterSearchCriteria", "Please enter search criteria");
    $this->setInfoMessage($this->language->phrase("EnterSearchCriteria"));
    $this->language->setPhrase("EnterSearchCriteria", ""); // clear for warning message
}

thanks
anyway to do this globaly?

  1. You may try Page_Rendering server event,
  2. There is no need to set the phrase "EnterSearchCriteria" again (unless you want to change to phrase).