diff --git a/e107_plugins/_blank/admin_config.php b/e107_plugins/_blank/admin_config.php
index 5b24f6a1d..21be73807 100644
--- a/e107_plugins/_blank/admin_config.php
+++ b/e107_plugins/_blank/admin_config.php
@@ -303,6 +303,16 @@ class plugin_blank_admin_ui extends e_admin_ui
 			$ns->tablerender("Hello",$text);	
 			
 		}
+	
+		// left-panel help menu area. (replaces e_help.php used in old plugins)	
+		public function renderHelp()
+		{
+			 $caption = LAN_HELP;
+			 $text = 'Some help text';
+
+			return array('caption'=> $caption,'text'=> $text);
+
+		}
 
 		public function beforePrefsSave($new_data, $old_data)
 		{
@@ -379,4 +389,4 @@ function headerjs() // needed for the checkboxes - how can we remove the need to
 {
 	return e107::getAdminUI()->getHeader();
 }
-*/
\ No newline at end of file
+*/