forum.coppermine-gallery.net

Support => cpg1.4.x Support => Older/other versions => cpg1.4 modpack by Stramm => Topic started by: streetart on June 29, 2008, 02:05:21 pm

Title: Pm stats and Sysmenu not on minicms pages...
Post by: streetart on June 29, 2008, 02:05:21 pm
Hello

I use the modpack and the PM stats after login and the Minicms plugin. But I want display the PM Stats and the Sysmenu only on the mainpage ---> index.php and not on the minicmspages...is there possible?

pls help is important.
Title: Re: Pm stats and Sysmenu not on minicms pages...
Post by: Stramm on July 01, 2008, 06:45:45 pm
copy function loginForm() from include/themes.inc.php to the theme.php you're actually using and modify it


add
Code: [Select]
$this_page = basename($_SERVER['REQUEST_URI']);
if (strpos($this_page, "?") !== false) $this_page = reset(explode("?", $this_page));
if ($this_page != "index.php") return $loginFormHtml = "";

right after
Code: [Select]
//if (!$CONFIG['enable_loginform']) return $loginFormHtml = "";

Title: Re: Pm stats and Sysmenu not on minicms pages...
Post by: streetart on July 01, 2008, 07:38:24 pm
yes..thats but only for the pm stats..and is there possible also for www.mydomain.ch/  without index.php?

how I can make that with the sysmenu?
Title: Re: Pm stats and Sysmenu not on minicms pages...
Post by: Stramm on July 01, 2008, 07:43:04 pm
How to do it in general you've seen now. Look further down within this function and modify what you need (by eg. adding an if clause)

To let it trigger if no site name is given... try
Code: [Select]
if ($this_page != "index.php" OR $this_page != "")