displayNotice('success', $title); } public function noticeWarning($title) { return $this->displayNotice('warning', $title); } public function noticeError($title) { return $this->displayNotice('error', $title); } public function noticeInfo($title) { return $this->displayNotice('info', $title); } private function displayNotice($type, $title) { return wc_print_notice($title, $type); // return ' //
'. esc_html($title) .'
//