forum.coppermine-gallery.net

Support => cpg1.5.x Support => cpg1.5 plugins => Topic started by: stvis on August 22, 2010, 11:02:29 am

Title: Final Extract 1.2: Remove Menuitems from other Plugins (e.g. Forum)?
Post by: stvis on August 22, 2010, 11:02:29 am
Hi François,

thank you for this great plugin, works nice for my needs at most :-)

I have installed the plugin "forum" too and would like to hide the forum-link from the SYS_MENU for unregistered Users too.
Would be nice, if you can give me a hint which direction to go for figuring/hacking it out... :-)

merci beaucoup,

Thomas
Title: Re: Final Extract 1.2: Remove Menuitems from other Plugins (e.g. Forum)?
Post by: François Keller on August 22, 2010, 07:04:55 pm
Hum, not so easy i guess, as the forum button is created by the forum plugin...
Have a look into the plugon.config.php file to see how it works....
Title: Re: Final Extract 1.2: Remove Menuitems from other Plugins (e.g. Forum)?
Post by: stvis on August 23, 2010, 10:22:33 am
Thank you, may be this is the right beginning... I will try that.
Title: Re: Final Extract 1.2: Remove Menuitems from other Plugins (e.g. Forum)?
Post by: stvis on August 23, 2010, 10:33:19 am
I think the Menu Link will be creaded in /plugins/forum/codebase.php. But I'm not a php-professional and i think this is now not the right place here furthermore.
Think I will ask the developers of the forum-plugin...

Thanks a lot for your Help !

 :)
Title: Re: Final Extract 1.2: Remove Menuitems from other Plugins (e.g. Forum)?
Post by: Αndré on September 01, 2010, 03:26:55 pm
I have installed the plugin "forum" too and would like to hide the forum-link from the SYS_MENU for unregistered Users too.
Open codebase.php, find
Code: [Select]
codebase_sys_user_button('forum.php', $lang['fr'], '', $lang['fr']);and replace with
Code: [Select]
if (USER_ID) codebase_sys_user_button('forum.php', $lang['fr'], '', $lang['fr']);
Title: Re: Final Extract 1.2: Remove Menuitems from other Plugins (e.g. Forum)?
Post by: Αndré on September 01, 2010, 03:30:19 pm
I've just seen that you already started a new thread here (http://forum.coppermine-gallery.net/index.php/topic,66740.0.html).