| Wednesday 02 May 2007 6:12:15 am 
                                                                 Hi! I had the same problem and I read on a french forum that we have to modify two files : first you have to open the "menu.ini.append.php" file in extension/eznewsletter/settings and uncomment "Tabs[]=eznewsletter" line in the [TopAdminMenu] section. Secondly you have to open the "menu.ini.append.php" file in extension/eznewsletter_builder/settings and comment the following lines : 
[TopAdminMenu]# This list contains menuitems of the top menu in admin interface
 #Tabs[]
 #Tabs[]=content
 #Tabs[]=media
 #Tabs[]=my_account
 There you have all menu items as before! (the only difference is that you have the "topics" item instead of "contents". To change this, you can open again the menu.ini.append.php file in extension/eznewsletter/settings ans you comment all the following lines : 
#[Topmenu_content]#URL[]
 #URL[default]=content/view/full/60
 #URL[browse]=content/browse/60
 #NavigationPartIdentifier=ezcontentnavigationpart
 #Name=Topic
 #Tooltip=Manage the newsletter topics.
 #Enabled[]
 #Enabled[default]=true
 #Enabled[browse]=true
 #Enabled[edit]=false
 #Shown[]
 #Shown[default]=true
 #Shown[navigation]=true
 #Shown[browse]=true
 And you add the following : 
[Topmenu_content]URL[]
 URL[default]=content/view/full/2
 URL[browse]=content/browse/2
 NavigationPartIdentifier=ezcontentnavigationpart
 #Name=Content structure
 #Tooltip=Manage the main content structure of the site.
 Enabled[]
 Enabled[default]=true
 Enabled[browse]=true
 Enabled[edit]=false
 Shown[]
 Shown[default]=true
 Shown[navigation]=true
 Shown[browse]=true
 Now you have the same items as before!!!  |