in 2026 is there anyway to change the popup top right from warning to info?
Warning
Please enter search criteria
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?